I\'m trying to invoke a WS over https on a remote host:remote port and I get:
Error fetching http headers
using the PHP5 SoapCli
In recent releases from Zend SOAP client not having "connection_timeout" and "Keep_alive" parameters at all.
You can see the piece of code I have attached as an image. The only way to solve this issue to increase your default socket timeout in php.ini
default_socket_timeout = 1000
I hope it will solve your issue. Give an upvote if it works.