我正在使用GoDaddy的Ultimate Hosting軟件包。該帳戶已安裝了靜態IP和SSL。現在,當我嘗試使用需要靜態IP的API時。但腳本正在發送來自隨機IP的請求。請給我一個方法。來自特定IP的API請求
我的腳本
$soap_exception_occured = false;
$wsdl_path = 'http://vrapi.sslwireless.com/?wsdl';
$response = '';
ini_set('soap.wsdl_cache_enabled', '0'); // disabling WSDL cache
try {
$client = new SoapClient($wsdl_path);
}
catch(SoapFault $exception) {
$soap_exception_occured = true;
$response .= '\nError occoured when connecting to the SMS SOAP Server!';
$response .= '\nSoap Exception: '.$exception;
}
我使用SOAP。 IP綁定可以幫助我嗎?
這聽起來像一個更適合GoDaddy的技術支持的問題。 – Quentin 2012-08-09 12:20:31
感謝Quentin,反正GoDaddy不會提供完整的固定IP發送請求。但是我聽說可以綁定IP來請求SOAP。可以幫助我嗎? 我發現了一個tuto [here] [1],應該是我的解決方案嗎? [1](http://stackoverflow.com/questions/3444359/is-it-possible-to-specify-the-outgoing-network-interface-to-use-for-a-php-soapcl?rq= 1) – IFightCode 2012-08-09 12:27:05