winfinit has asked for the wisdom of the Perl Monks concerning the following question:
first call goes very well, i am getting in return communityID that i am#!/usr/bin/perl use SOAP::WSDL; use HTTP::Cookies; import SOAP::Lite +trace => 'all'; my $soap = SOAP::WSDL->new(wsdl => 'http://domain.tld/api.wsdl'); $soap->proxy('https://domain.level.tld/API/api.dll?Handler=Default', cookie_jar => HTTP::Cookies->new()); $soap->wsdlinit(caching=>1); $soap->call('SessionLoginTechnician', 'TechName' => 'username', 'Password' => 'password', ); $soap->call('AccountSetStatus', AccountNumber => 123456789, Status => 'ACCOUNT_ACTIVE', Justification => 'api testing', StatusCode => 0 );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: help with setting cookie with SOAP::WSDL
by olus (Curate) on Dec 19, 2007 at 12:09 UTC | |
by winfinit (Novice) on Dec 19, 2007 at 22:21 UTC |