用户在我的网站上注册后,我需要以不会阻止用户的方法发送肥皂请求。如果肥皂服务器运行缓慢,我不希望最终用户不得不等待它。有没有一种方法可以发送请求并让我的主 PHP 应用程序继续运行而无需等待来自肥皂服务器的响应?如果没有,有没有办法在soap请求上设置最大超时,并在请求大于最大超时时处理功能?
编辑:理想情况下,我希望通过请求的最大超时来处理这个问题。我有以下内容:
//ini_set('default_socket_timeout', 1);
$streamOptions = array(
'http'=>array(
'timeout'=>0.01
)
);
$streamContext = stream_context_create($streamOptions);
$wsdl = 'file://' . dirname(__FILE__) . '/Service.wsdl';
try{
if ( file_get_contents( $wsdl ) ) {
$this->_soapClient = new SoapClient($wsdl,
array(
'soap_version' => SOAP_1_2,
'trace' => true,
'stream_context' => $streamContext
)
);
$auth = array('UserName' => $this->_username, 'Password' => $this->_password);
$header = new SoapHeader(self::WEB_SERVICE_URL, "WSUser", $auth);
$this->_soapClient->__setSoapHeaders(array($header));
}//if
}
catch(Exception $e){
echo "we couldnt connect". $e;
}
$this->_soapClient->GetUser();
我将超时设置为 0.01 以尝试强制连接超时,但请求似乎仍然触发。我在这里做错了什么?