in reply to Re: Issue with SOAP::Lite making two POSTs
in thread Issue with SOAP::Lite making two POSTs
Sorry but I have to strip out some things. Anyway, there isn't another call being made in the code. So it seems that either SOAP::lite takes an initiative to make another call or the server tells it to, I'm not sure.use SOAP::Lite (+trace => 'all', maptype => {}, encoding => 'iso-8859- +1', readable => 1 ); my $soap = SOAP::Lite $soap->outputxml(1); $soap->proxy('http://xxxx', timeout => '60' ); $soap->uri('urn:xxxx'); $soap->on_action( sub { join '/', 'xxxx', $_[1] } ); //@params gets filled with the data tags my $method = SOAP::Data->name( 'xxxx' ); my $result = $soap->call($method => @params)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Issue with SOAP::Lite making two POSTs
by Anonymous Monk on Feb 13, 2009 at 09:15 UTC | |
by perlden (Initiate) on Feb 13, 2009 at 12:40 UTC |