I\'m trying to run a web service using PHP & SOAP, but all I\'m getting so far is this:
(SoapFault)[2] message which states: \'SOAP-ERROR: Parsing
I had the same problem, I succeeded by adding:
new \SoapClient(URI WSDL OR NULL if non-WSDL mode, [ 'cache_wsdl' => WSDL_CACHE_NONE, 'proxy_host' => 'URL PROXY', 'proxy_port' => 'PORT PROXY' ]);
Hope this help :)