Guys, I\'m stuck, banging my head off the desk for the past few hours.
I am trying to consume a service, and I have 8 other functions that I call that are almost IDE
I had the same problem and I resolved using this syntax for __soapCall:
__soapCall
... $params = new SoapParam($data, 'parameters'); $response = $this->__soapCall('methodName', array(new SoapVar($data, XSD_ANYTYPE, 'parameters')) ); ...
Instead of
__soapCall('methodName', array($params)