我正在使用soap客户端类。运行一段时间后,它会停止执行。我认为问题在于执行时间。我使用以下方法来增加执行时间。
Method-1 : $client = new SoapClient($myUrl, array('connection_timeout' => 1500));
Method-2 : ini_set('default_socket_timeout', 1500);
Method-3 : try {
$client->WaitBeforeResponse(1500);
} catch(Exception $e) {
echo $e->getMessage();
}
但他们都没有奏效。对于方法-3,它显示错误
功能(“WaitBeforeResponse”)不是此服务的有效方法
是否有任何工作方法可以增加soap客户端的执行时间?