I'm trying to invoke a WS over https on a remote host:remote port and I get:

Error fetching http headers

using PHP5 SoapClient; I can get the list of functions by doing $client->__getFunctions() but when i call $client->myFunction(...) i always get this error.

I've googled and found to increase default_socket_timeout in php.ini but it did not work.

Can anyone suggest me a solution?

EDIT: here is the code:

$wsdl="myWSDL";

$client = new SoapClient($wsdl,array('connection_timeout'=>5,'trace'=>true,'soap_version'=>SOAP_1_2));

var_dump($client->__getFunctions());

try {
    $response=$client->myFunction("1","2","3");
         } catch (SoapFault $fault) {
    var_dump($fault);
    }

}

...always in fault.

link|improve this question

56% accept rate
1  
Could you provide the code? – mugur Feb 22 at 21:40
Hm... Does ini_set('user_agent','somerandomuseragent'); help? Have you tried a manual request to that service? – Wrikken Feb 22 at 22:06
If i make a manual request to the WS through Lynx or curl it runs fine; have tried to set user_agent but without success – Cris Feb 22 at 22:09
This error message is often seen after a default_socket_timeout. Can you increase its value with ini_set? – cbuckley Feb 22 at 22:35
feedback

1 Answer

This error is often seen when the default_socket_timeout value is exceeded for the SOAP response. (See this link.)

Note from the SoapClient constructor: the connection_timeout option is used for defining a timeout value for connecting to the service, not for the timeout for its response.

Inspect the directive like so:

var_dump(ini_get('default_socket_timeout'));

And try increasing it:

ini_set('default_socket_timeout', 600); // or whatever new value you want
link|improve this answer
I've tried to increase it at 600 but always get ["faultstring"]=> string(27) "Error Fetching http headers" – Cris Feb 22 at 23:16
OK, then retry Wrikken's suggestion above, except it's not meant to be ini_set but another option in your array passed to the constructor. I am guessing he suggested this based on PHP #37054, and your error might be similar. Try a manual request using curl and -H "User-Agent:" and see if you get a Location header in the response. – cbuckley Feb 22 at 23:27
Thanks for your attntion; i've tried as you suggested but with no way; when i do curl i see <soap:operation soapAction="" style="rpc"/> ...can it help? – Cris Feb 23 at 0:05
It would help if you could provide more information (e.g. a full output of your curl call with -v to see request/response headers). – cbuckley Feb 23 at 0:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.