habit_forming has asked for the wisdom of the Perl Monks concerning the following question:
and$soap_obj = SOAP::Lite->uri($uri) ->proxy($proxy,timeout => $timeout); $soap_obj->transport->cookie_jar($cookie_jar);
where $cookie_jar is created like$soap_obj = SOAP::Lite->uri($uri) ->proxy($proxy,timeout => $timeout cookie_jar => $cookie_jar);
What am I doing wrong? I have looked at the docs on CPAN and at www.soaplite.com. I just can't seem to get it to work.require HTTP::Cookies; my $cookie_jar = HTTP::Cookies->new(ignore_discard => 1); $cookie_jar->set_cookie(undef, "my_cookie", $value, '/', $cookie_domain, '8080', #Yes 8080 is https. undef, 1, 600);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: SOAP::Lite and HTTP::Cookies
by dtr (Scribe) on Aug 24, 2005 at 17:08 UTC | |
by habit_forming (Monk) on Aug 24, 2005 at 20:58 UTC |