public class HomeController : Controller
{
public ActionResult Index()
{
Task<string> t = DownloadStringTaskAsync(new Uri("http://www.google.com/search?q=aspnet"));
t.Wait();
string res = t.Result;
return View((object)res);
}
Task<string> DownloadStringTaskAsync(Uri address)
{
TaskCompletionSource<string> tcs = new TaskCompletionSource<string>();
WebClient wc = new WebClient();
wc.DownloadStringCompleted += (s, e) => tcs.SetResult(e.Result);
wc.DownloadStringAsync(address);
return tcs.Task;
}
}
该操作永远不会返回,请求只会超时。
我们正在为所有异步操作使用TPL任务,并且必须包含一些WebClient的方法,直到我们切换到框架4.5。
上述方法DownloadStringTaskAsync
是其中一个包装器的简化版本。
我无法弄清楚为什么等待任务会使aspnet中的线程死锁并在控制台或桌面应用程序中正常运行。
以下是死锁线程的样子。
请求线程
[在睡觉,等待或加入]
mscorlib.dll!System.Threading.Monitor.Wait(object obj,int millisecondsTimeout,bool exitContext)+ 0x18 bytes mscorlib.dll!System.Threading.ManualResetEventSlim.Wait(int millisecondsTimeout,System.Threading.CancellationToken cancellationToken)+ 0x264 bytes
mscorlib.dll!System.Threading.Tasks.Task.InternalWait(int millisecondsTimeout,System.Threading.CancellationToken cancellationToken)+ 0x166 bytes mscorlib.dll!System.Threading.Tasks.Task.Wait(int millisecondsTimeout,System.Threading.CancellationToken cancellationToken)+ 0x41 bytes
mscorlib.dll!System.Threading.Tasks.Task.Wait()+ 0xb bytes
TCSProblem.DLL!TCSProblem.Controllers.HomeController.Index()第16行+ 0xa字节WebClient线程
[在睡觉,等待或加入]
mscorlib.dll!System.Threading.Monitor.Enter(object obj,ref bool lockTaken)+ 0x14 bytes
System.Web.dll!System.Web.AspNetSynchronizationContext.CallCallback(System.Threading.SendOrPostCallback回调,对象状态)+ 0x53字节
System.Web.dll!System.Web.AspNetSynchronizationContext.Post(System.Threading.SendOrPostCallback回调,对象状态)+ 0x9字节
System.dll!System.ComponentModel.AsyncOperation.Post(System.Threading.SendOrPostCallback d,object arg)+ 0x29 bytes
System.dll!System.Net.WebClient.PostProgressChanged(System.ComponentModel.AsyncOperation asyncOp,System.Net.WebClient.ProgressData progress)+ 0x25c bytes
答案 0 :(得分:10)
答案 1 :(得分:-1)
所有.NET类默认捕获SynchronizationContext,我遇到了类似的问题:SmtpClient.SendAsync blocking my ASP.NET MVC Request