Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^2: SOAP::Lite and sessions?

by Anonymous Monk
on Apr 18, 2008 at 15:34 UTC ( [id://681535]=note: print w/replies, xml ) Need Help??


in reply to Re: SOAP::Lite and sessions?
in thread SOAP::Lite and sessions?

Just a tip. If you do this, you won't have to call login 2x:
use SOAP::Lite; use HTTP:: Cookies; my $COOKIE = './coooooooooookie.txt'; my $SET_COOKIE = HTTP::Cookies->new(ignore_discard => 1, file=> $COOKIE, autosave=>1); my $soapLite = SOAP::Lite->new(); $soapLite->proxy($end_point, cookie_jar => $SET_COOKIE); $soapLite->uri($uri_slash_method); ...
I've had success putting that (plus other pertinent info) into a _call method, then constructing separate methods that are called through _call. Hope that helps.

Replies are listed 'Best First'.
Re^3: SOAP::Lite and sessions?
by polera (Initiate) on Apr 18, 2008 at 15:38 UTC
    Sorry, wasn't logged in. If anybody has any questions, that was my post above...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://681535]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (9)
As of 2024-03-28 09:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found