Hi,
first of all many thanks for your quick response!!!
Can you show me how to make a call using the generic interface?
The calls I make is the following (PHP):
Code: Select all
$client = new SoapClient(null, array('location' =>
$otrs_url,
'uri' => "Core",
'trace' => 1,
'login' => $otrs_soap_username,
'password' => $otrs_soap_password,
'style' => SOAP_RPC,
'use' => SOAP_ENCODED
));
$SessionID = $client->__soapCall("Dispatch",
array($otrs_soap_username, $otrs_soap_password,
"SessionObject", "CreateSessionID",
"CustomerUserLogin", $user,
"UserEmail", $email
));
I see that in the 3.2 I modified the rpc.pl adding:
Code: Select all
use Kernel::System::AuthSession;
use Kernel::System::Auth;
......
$CommonObject{SessionObject} = Kernel::System::AuthSession->new(%CommonObject);
and that's why my SOAP call works...but with I never try the Generic Interface can you please show me an example?
Thanks in advance