SOAP-WSDL - Re: Does SOAP::WSDL support cookie-jar?

Posted on Tue Jun 24 05:49:36 2008 by noah in response to 8131 (See the whole thread of 4)
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