I am trying to call a web service which is expecting a complex type.. I did some research and found this is a big issue in php... maybe somebody has some tips?
Doing basic Soap requests work fine, such as
$client->GetClientById(array('ClientID'=>123');
However, for updating, it is expecting a Client object... I already tried different things such as
$clientobj = $client->GetClientById(array('ClientID'=>123');
$client->UpdateClient($clientobj, $params);
Can anyone suggest me how to acomplish this?
Thanks.