我试图在 web.config 文件中设置 executionTimeout:
<compilation debug="false" targetFramework="4.5">
<httpRuntime executionTimeout="30"/>
查看 IIS 管理器请求页面,我可以看到请求在 30 秒后没有被终止。
我应该在 IHttpAsyncHandler 中实现 Timer 吗?
我试图在 web.config 文件中设置 executionTimeout:
<compilation debug="false" targetFramework="4.5">
<httpRuntime executionTimeout="30"/>
查看 IIS 管理器请求页面,我可以看到请求在 30 秒后没有被终止。
我应该在 IHttpAsyncHandler 中实现 Timer 吗?
由于明显缺乏对 IHttpAsyncHandler 超时的内置支持,您可能必须管理自己的超时。也许这是设计使然;毕竟你选择了一种异步模式——MSFT 认为谁在尝试为你的长时间运行的任务设置默认超时?
我要做的是使用ThreadPool.RegisterWaitForSingleObject以适当的超时来管理您的轮询。这是我用来避免等待永远不会返回的 Web 服务的代码示例:
private const int REQUEST_TIMEOUT = 30000; // miliseconds (30 sec)
private void CallService()
{
try {
string url = "somewebservice.com";
WebRequest request = WebRequest.Create(url);
// Asynchronously fire off the request
IAsyncResult result = request.BeginGetResponse(new AsyncCallback(MyRoutineThatUsesTheResults), request);
// Handle timed-out requests
ThreadPool.RegisterWaitForSingleObject(result.AsyncWaitHandle, new WaitOrTimerCallback(RequestTimeout), request, REQUEST_TIMEOUT, true);
}
catch (Exception ex) {
_logger.Error("Error during web service request.", ex);
}
private void RequestTimeout(object state, bool timedOut)
{
if (timedOut) {
WebRequest request = (WebRequest)state;
_logger.WarnFormat("Request to {0} timed out (> {1} sec)", request.RequestUri.ToString(), REQUEST_TIMEOUT / 1000);
request.Abort();
}
}
您将需要一个 IAsyncResult 来使用这种方法,但这是一个既定的模式,您应该不会在运行样本时遇到问题。
此外,当 IIS 决定在轮询仍在运行时回收您的应用程序池/拆除您的应用程序域时,您将遇到问题。如果这是您想要处理的情况,您可以使用HostingEnvironment.RegisterObject。
您可以尝试将其添加到您的web.config
文件中:
<system.web>
<pages asyncTimeout="30" />
</system.web>
它为PageAsyncTask
,但也可能被授予荣誉IHttpAsyncHandler
?
HttpTaskAsyncHandler
如果没有,您可能对ASP.Net
4.5 版本
中的新功能有更多的运气: http ://www.asp.net/vnext/overview/whitepapers/whats-new#_Toc318097378
您必须使用 RegisterAsyncTask 检查下面的链接