in reply to Re: Unable to get SOAP::Lite working with WSDL
in thread Unable to get SOAP::Lite working with WSDL
This tell me about the error with the Envelops, And I have no idea how to change the envelope . One thing I did try, Is downloading the WSDL, And then hosted it locally. Then I changed the soap reference in the WSDL but then that failed to connect to the service at alluse SOAP::Lite; my $WSDL = 'https://gsxws2.apple.com/wsdl/emeaAsp/gsx-emeaAsp.wsdl'; my $soap = SOAP::Lite ->service($WSDL) ->on_fault(sub { my $soap = shift; my $res = shift; if(ref($res) eq '') { die($res); } else { die($res->faultstring); } return new SOAP::SOM; } ); my $result = $soap->Authenticate('Daten','xxx','ServiceNo5'); print $result;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Unable to get SOAP::Lite working with WSDL
by DatenThielt (Initiate) on Mar 04, 2012 at 23:54 UTC |