I can successfully create Tickets with PHP and SOAP. But with the update OTRS 3.0 to 3.3 I cannot link tickets anymore?!?
Can somebody help? Here some code

Code: Select all
OTRS 3.0
$linkid = $client->__soapCall("Dispatch",
array($otrsUser, $otrsPwd, "LinkObject", "LinkAdd",
"SourceObject" , 'Ticket',
"SourceKey" , $ticket,
"TargetObject" , 'Ticket',
"TargetKey" , $ParentId,
"Type" , 'Normal',
"State" , 'Valid',
"UserID" , $userId
));
OTRS 3.3
$client->__soapCall('TicketSlaveLinkAdd', array(
new SoapParam($otrsUser, "UserLogin"),
new SoapParam($otrsPwd, "Password"),
new SoapParam(array(
'SourceObject' => 'Ticket',
'SourceKey' => $TicketID,
'TargetObject' => 'Ticket',
'TargetKey' => $ParentId,
'Type' => 'Normal',
'State' => 'Valid',
'UserID' => $userId,
), 'Ticket'),
));