http://qs321.pair.com?node_id=297255

Discipulus has asked for the wisdom of the Perl Monks concerning the following question:

Hi wise monks!

this is my situation:
-I run perl active state on IIS 5
-I have developped a simple CGI-based soap server
-it runs!

Now poeoples that work with me wont to call my server trough a C# client. They say that they need a wsdl

I found a cpan module WSDL::Generator and I have succesfully installed it. I have created a generator.pl that extract some info from my module and I redirect the output to a .wsdl file.

It is correct ?? (I dont think so) it is possible ?? (I hope so)how to go on ??

thanks for any suggestion
lor*

Replies are listed 'Best First'.
Re: SOAP::Lite WSDL::Generator
by inman (Curate) on Oct 07, 2003 at 14:24 UTC
    Have you specified the content type as text/xml to return the WSDL from your script? This is probably what the C# client is expecting.

    Inman