0
I’m having a hard time consuming a Webservice in PHP, whenever I 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 fix it? Or what I’m doing wrong?
Does it have any model of how the WS should respond?
– Daniel Costa
@Danielcosta, actually he should return a list with the information. One thing I realized but I confess that I do not know what it is: it seems that this WSDL has a protType that would be where I could access the methods, without accessing them directly. I just don’t know how to do it using php’s Soapclient. I did a test with C# and there, I was able to access, but using the so called protType.
– Leandro