jaco has asked for the wisdom of the Perl Monks concerning the following question:
any ideas if SOAP::Lite can handle state like this? A php client written to do the same works correctly.use SOAP::Lite +autodispatch => uri =>'api.php', proxy => 'api.php', on_fault => sub { my($soap, $res) = @_; die ref $res ? $res->faultdetail:$soap->transport->status, "\n +"; }; #retuns 1 , which is correct print SOAP->authenticate("user", "pass"); #retuns 0 , which is incorrect, should return 1 print SOAP->checkAuthStatus();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: SOAP::Lite and persistence
by gellyfish (Monsignor) on Sep 07, 2005 at 19:19 UTC |