I'm having a difficulty getting a WebService in PHP, whenever I make the request via SoapClient I get the following error message:
'NoneType' object has no attribute 'unmarshall'
The call is being made as follows:
$conta = 'conta';
$token = 'token';
$url = 'url/soap?WSDL';
$soap_client = new SoapClient($url);
$soap_client->ProcessoAndamentosTodos($token, $conta, $parametro3);
Would anyone know how to solve it? Or what am I doing wrong?