in reply to Authentication with SOAP::Lite ?
You can enable sending tickets in cookie.# to get generated ticket from remote site 1. $ticket = $soap_obj->login($username, $password); 2. $soap_obj->some_method($ticket, $anyAddParameters); 3. ..... 4. $soap_obj->logout($ticket);
|
|---|