massimop has asked for the wisdom of the Perl Monks concerning the following question:
my $som = SOAP::Lite -> encoding('literal') -> service($wsdl) -> proxy($service_address, keep_alive => 1) -> on_action(sub {sprintf '%s',$soapaction, shift}); $som -> call(SOAP::Data->name('GetFUR')-> attr({xmlns => 'https://webd +pc.federfarma.lombardia.it/DpcServices/FurService'}) => $input,$securityHeader);
but at the server side I receive:<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" x +mlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="h +ttp://www.w3.org/2001/XMLSchema" soap:encodingStyle="http://schemas.x +mlsoap.org/soap/encoding/" xmlns:soap="http://schemas.xmlsoap.org/soa +p/envelope/"> <soap:Header> ....
<![CDATA[<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-in +stance" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xml +ns:xsd="http://www.w3.org/2001/XMLSchema" soap:encodingStyle="http:// +schemas.xmlsoap.org/soap/encoding/" xmlns:soap="http://schemas.xmlsoa +p.org/soap/envelope/"> <soap:Header> ...... ]]>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: SOAP::Lite client and .NET server
by psini (Deacon) on Jun 08, 2008 at 20:04 UTC | |
by massimop (Initiate) on Jun 09, 2008 at 05:21 UTC |