Hi,
I've managed to solve my problem with NULL return (changed from eaccelerator
to apc). Now I am trying to consume a remote webservice that uses HTTP
authentication. If I try using Zend_Soap_Client I get errors like these
PHP Fatal error: Uncaught SoapFault exception: [HTTP] Unauthorized in
/Zend/Soap/Client.php:987
Stack trace:
#0 [internal function]: SoapClient->__doRequest('<?xml version="...',....
If I try to use a standalone soap client (soapUI) it works.
Is there anyone using Zend_Soap_Client with those auth options with success?
I am simply creating my client with $c = new Zend_Soap_Client($urlToWsdl,
$options)
where $options = array('login' => 'xxxxx', 'password' => 'xxxxx');