GoDaddy の Ultimate Hosting パッケージを使用しています。アカウントには静的 IP と SSL がインストールされています。今、静的 IP を必要とする API を使用しようとしています。しかし、スクリプトはランダムな IP からリクエストを送信しています。私に方法を提案してください。
私のスクリプト
$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 バインドは役に立ちますか?詳しくありがとうございます。