$options = array( 'curl' => array( 'CURLOPT_SSL_VERIFYPEER' => 0, 'CURLOPT_SSL_VERIFYHOST' => 2 ) );
$wsdl = new SOAP_WSDL('https://idd.infocasa.com/webservice/iddwebservice.asmx?WSDL', $options);
But it doesn't work -- I'm running the script from the command line and it just sits there for a while (til whatever the timeout is I guess) and then ends without any kind of error. If I try to do:
$soapclient = $wsdl->getProxy();
Then I get errors.
I'm guessing I'm just not setting those options properly. I'm aware of $client->setOpt, but that wouldn't take effect until after the request is made, right?
thanks, -josh
-- PHP Soap Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php