On Fri, Jul 10, 2009 at 16:38, endrazine<endraz...@gmail.com> wrote:
> David Zülke wrote:
>
>> $c = new SoapClient(
>>   'https://foo/bar.wsdl',
>>   array(
>>     'stream_context" => stream_context_create(array(
>>       'ssl' => array(
>>         'verify_peer' => true
>>       )
>>     ))
>>   )
>> );
>
>
> This works and solves the issue, thank you :)
>
> The other methods I have been suggested and have been testing, for
> instance recompiling with --with-curlwrappers do NOT work.

--with-curlwrappers overwrites the builtin stream support to use curl.
The curlwrappers have their own context options:
http://php.net/context.curl


-Hannes

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to