I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2008-06-24 02:49:36-07 by noah in response to 8131
Re: Does SOAP::WSDL support cookie-jar?
Yep; syntax is pretty close to what you're used to:
use MyInterfaces::MyService::ServicePort; use HTTP::Cookies; # # I pass 'ignore_discard => 1' to new(), but you may not need to my $jar = HTTP::Cookies->new(); my $soap = MyInterfaces::MyService::ServicePort->new(); $soap->proxy("https://10.0.0.100/", cookie_jar => $jar); ...
--n
Direct Responses: 8150 | Write a response