I got this running this morning with some code in my class that uses PEAR:SOAP:
if(AMB_SOAP_BYPASS_SSL_VERIFICATION)
{
// we're making a https call, but don't have a proper certificate set up, so we just bypass it
$this->client->setOpt('curl', CURLOPT_SSL_VERIFYPEER, FALSE);
$this->client->setOpt('curl', CURLOPT_SSL_VERIFYHOST, FALSE);
}
So it seems to be all good now! Hooray!
-neko
-- PHP Soap Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php