in reply to Soap client

Could you post the WSDL? (please anonymize any sensitive data)

I've not tried document-style SOAP with SOAP::Lite, but I'm interested to see the method-proxies that SOAP::WSDL would create.

-David

Replies are listed 'Best First'.
Re^2: Soap client
by palette (Scribe) on Aug 16, 2007 at 14:35 UTC
    .... <binding name="mlcGws" type="s0:mlcGws"> <soap:binding transport="http://schemas.xmlsoap.org/soap/http" sty +le="document"/> <operation name="LCRequest"> <soap:operation soapAction="http://../LCRequest" style="document +"/> <input> <soap:body use="literal"/> </input> <output> <soap:body use="literal"/> </output> </operation> </binding> <service name="mlcGw"> <port name="mlcGws" binding="s0:mlcGws"> <soap:address location="http://localhost:9443/LC"/> </port> </service> </definitions> ...


    I wanted to know how can I pass over the SOAP call. I have given a sample XML and this WSDL.

    So I will go on building the XML according to the WSDL and call the soap method name that they are exposing. So where will I send the XML that i have built. Will that be an argument to the soap call.