How to generate WSDL file from SOAP::Lite

How to generate WSDL file from SOAP::Lite

am 25.05.2007 11:48:06 von sonet.all

I can use SOAP::Lite to build a soap server.
And use the SOAP::Lite to write the soap client.
But a .Net guy say that he need a WSDL file.
I have no idea how to generate the WSDL file.
I give him the trace result. But he didn't know what is it.

use SOAP::Lite +trace;

[REQUEST]

POST /myserver/transprocess
Accept: text/xml
Accept: multipart/*
Content-Length: 498
Content-Type: text/xml; charset=utf-8
SOAPAction: "BModule#fetch"


xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
xmlns:SOAP-ENC=http://schemas.xmlsoap.org/soap/encoding/
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd=http://www.w3.org/1999/XMLSchema
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/enco ding/">


2001-01-01 13:00:00
2002-12-31 00:00:00




[RESPONSE]


xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding /"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">

........


Re: How to generate WSDL file from SOAP::Lite

am 25.05.2007 17:05:55 von paduille.4061.mumia.w+nospam

On 05/25/2007 04:48 AM, sonet wrote:
> I can use SOAP::Lite to build a soap server.
> And use the SOAP::Lite to write the soap client.
> But a .Net guy say that he need a WSDL file.
> I have no idea how to generate the WSDL file.
> I give him the trace result. But he didn't know what is it.
> [...]

http://search.cpan.org/search?query=wsdl&mode=module

http://search.yahoo.com/search?p=WSDL+.NET

Re: How to generate WSDL file from SOAP::Lite

am 26.05.2007 01:09:46 von RedGrittyBrick

sonet wrote:
> I can use SOAP::Lite to build a soap server.
> And use the SOAP::Lite to write the soap client.
> But a .Net guy say that he need a WSDL file.
> I have no idea how to generate the WSDL file.

use POD::WSDL;