とにかくSoapClientリクエストがタイムアウトして例外をスローすることはありますか。今のところ、PHPサーバー応答タイムアウト、私の場合は60秒。 60秒の警告は私が望んでいるものではありません。
見て
快適で、環境がクラスを拡張できる場合。
基本的にSoapClient
クラスを拡張し、HTTPトランスポートをタイムアウトを処理できるcurlに置き換えます。
class SoapClientTimeout extends SoapClient
{
private $timeout;
public function __setTimeout($timeout)
{
if (!is_int($timeout) && !is_null($timeout))
{
throw new Exception("Invalid timeout value");
}
$this->timeout = $timeout;
}
public function __doRequest($request, $location, $action, $version, $one_way = FALSE)
{
if (!$this->timeout)
{
// Call via parent because we require no timeout
$response = parent::__doRequest($request, $location, $action, $version, $one_way);
}
else
{
// Call via Curl and use the timeout
$curl = curl_init($location);
curl_setopt($curl, CURLOPT_VERBOSE, FALSE);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($curl, CURLOPT_POST, TRUE);
curl_setopt($curl, CURLOPT_POSTFIELDS, $request);
curl_setopt($curl, CURLOPT_HEADER, FALSE);
curl_setopt($curl, CURLOPT_HTTPHEADER, array("Content-Type: text/xml"));
curl_setopt($curl, CURLOPT_TIMEOUT, $this->timeout);
$response = curl_exec($curl);
if (curl_errno($curl))
{
throw new Exception(curl_error($curl));
}
curl_close($curl);
}
// Return?
if (!$one_way)
{
return ($response);
}
}
}
Andreiは適切なソリューションにリンクしていますが、このコードではコードが少なくなりますが、良いソリューションに到達します。
サンプルコード:
_//
// setting a connection timeout (fifteen seconds on the example)
//
$client = new SoapClient($wsdl, array("connection_timeout" => 15));
_
さらにきめ細かなHTTP制御が必要な場合は、ストリームコンテキストもあります。 new SoapClient()
の_stream_context
_オプションを参照してくださいドキュメント 。表面の下でSoapClient
はHTTPおよびSSLトランスポートを使用します。
ini_set("default_socket_timeout", 15);
$client = new SoapClient($wsdl, array(......));
Connection_timeoutオプションは、SOAPサービスへの接続のタイムアウトを秒単位で定義します。このオプションは、応答が遅いサービスのタイムアウトを定義しません。default_socket_timeoutの呼び出しを待つ時間を制限するには設定が可能です。
受け入れられた答えは、SoapClientが提供しなければならないすべての機能を破壊します。正しいコンテンツヘッダーの設定、認証など。
これは問題に対するより良い解決策でしょう
class MySoapClient extends \SoapClient
{
private $timeout = 10;
public function __construct($wsdl, array $options)
{
// Defines a timeout in seconds for the connection to the SOAP service.
// This option does not define a timeout for services with slow responses.
// To limit the time to wait for calls to finish the default_socket_timeout setting is available.
if (!isset($options['connection_timeout'])) {
$options['connection_timeout'] = $this->timeout;
}
parent::__construct($wsdl, $options);
}
public function setTimeout($timeout)
{
$this->timeout = $timeout;
}
public function __doRequest($request, $location, $action, $version, $one_way = 0)
{
$original = ini_get('default_socket_timeout');
ini_set('default_socket_timeout', $this->timeout);
$response = parent::__doRequest($request, $location, $action, $version, $one_way);
ini_set('default_socket_timeout', $original);
return $response;
}
}
これはcomposerからインストールできます。 https://github.com/ideaconnect/idct-soap-client
標準のSoapClientを拡張し、再試行、接続、読み取りのタイムアウトの量を設定するオプションを提供します。
SOAPClientを使用する場合、次のロジックを使用しています。
public function executeSoapCall($method, $params)
{
try {
$client = $this->tryGetSoapClient();
$timeout = ini_get('default_socket_timeout');
ini_set('default_socket_timeout', 60);//set new timeout value - 60 seconds
$client->__soapCall($method, $params);//execute SOAP call
ini_set('default_socket_timeout', $timeout);//revert timeout back
} catch (\Throwable $e) {
if (isset($timeout)) {
ini_set('default_socket_timeout', $timeout);//revert timeout back
}
}
}
protected function tryGetSoapClient()
{
$timeout = ini_get('default_socket_timeout');//get timeout (need to be reverted back afterwards)
ini_set('default_socket_timeout', 10);//set new timeout value - 10 seconds
try {
$client = new \SoapClient($this->wsdl, $this->options);//get SOAP client
} catch (\Throwable $e) {
ini_set('default_socket_timeout', 10);//revert back in case of exception
throw $e;
}
$this->iniSetTimeout($timeout);//revert back
return $client;
}
これにより、接続の確立に最大10秒、呼び出しの実行に60秒待機できます。