Ok, I found it.
open ssl was disabled in php.ini :)
Bill YILDIRIM wrote:
Hi there,
I am trying to run this code
$config = array( 'adapter' =>
'Zend_Http_Client_Adapter_Socket', 'ssltransport' => 'ssl');
$client = new Zend_Http_Client(EPDQ_URL,$config);
$client->setRawData($xml, 'text/xml');
$_response = $client->request('POST');
but I always get
*Fatal error*: Uncaught exception 'Zend_Http_Client_Adapter_Exception'
with message 'Unable to Connect to ssl://xxxxx:xxxx. Error #142278072:
Unable to find the socket transport "ssl" - did you forget to enable
it when you configured PHP?'
I can use CURL but I'm using ZF and want to use it's functions.
Thanks
Bill