|
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 |