ASP.NET MVC POST 第一次尝试无限期等待
ASP.NET MVC POST waiting indefinitely on first attempt
我有一个用 Html.BeginForm 制作的标准表单,它发布到控制器中的异步操作。看起来像这样(这是大纲,不是实际代码):
[HttpPost]
public async Task<ActionResult> Index(UserCreds creds)
{
try
{
if (ModelState.IsValid)
{
var user = await loginRep.Login(creds.Username, creds.Password);
if (user != null)
{
_context.SetAuthenticationToken(user);
return RedirectToAction("Index", "Landing");
}
else
{
ModelState.AddModelError("", "Login failed.");
}
}
else
{
_logger.Debug(string.Format("User failed authentication."));
}
}
catch (Exception ex)
{
throw new HttpException(500, string.Format("An error occured during the execution of the action {0} from Controller {1}", "Index", "Login"), ex);
}
return View();
}
第一次提交表单时,浏览器将无限期地等待响应,即使可以看到调试器步进已达到 RedirectToAction。如果然后在浏览器中停止请求,并简单地再次提交,重定向就会发生。所有后续登录尝试也成功重定向。身份验证令牌在第一次尝试时也未设置。
这可能与 loginRep.Login
中的委托使用有关。在它里面最终会做这样的事情:
private async Task<LoginResponse> SendLoginRequest(string username, string password)
{
TaskCompletionSource<LoginResponse> tcs = new TaskCompletionSource<LoginResponse>();
LoginResponseCallback callback = null;
callback = new LoginResponseHandler(delegate (response) {
securityService.OnLoginResponse -= callback;
tcs.SetResult(response);
});
securityService.OnLoginResponse += callback;
securityService.SendLoginRequest(username, password);
return await tcs.Task;
}
有人知道发生了什么事吗?如果这是一个死锁,我不会期望看到调试器到达重定向,我也不会期望登录对除第一次以外的所有尝试都有效。
请注意,如果只是跳过发送登录请求并且只是硬编码成功响应的样子,那么表单第一次确实有效。
好的。问题已解决。我展示的两个代码示例没有任何问题。错误是在设置我的安全服务时出现的,所以很遗憾,它是针对这个应用程序的。
也就是说,无限等待的发生是因为 Global.asax.cs 中的 Application_Error 有效地吞噬了某些异常。一旦我将它更改为无论如何总是重定向到我的错误页面,至少当问题发生时它立即重定向到错误页面,而不是从用户的角度来看挂起。
我有一个用 Html.BeginForm 制作的标准表单,它发布到控制器中的异步操作。看起来像这样(这是大纲,不是实际代码):
[HttpPost]
public async Task<ActionResult> Index(UserCreds creds)
{
try
{
if (ModelState.IsValid)
{
var user = await loginRep.Login(creds.Username, creds.Password);
if (user != null)
{
_context.SetAuthenticationToken(user);
return RedirectToAction("Index", "Landing");
}
else
{
ModelState.AddModelError("", "Login failed.");
}
}
else
{
_logger.Debug(string.Format("User failed authentication."));
}
}
catch (Exception ex)
{
throw new HttpException(500, string.Format("An error occured during the execution of the action {0} from Controller {1}", "Index", "Login"), ex);
}
return View();
}
第一次提交表单时,浏览器将无限期地等待响应,即使可以看到调试器步进已达到 RedirectToAction。如果然后在浏览器中停止请求,并简单地再次提交,重定向就会发生。所有后续登录尝试也成功重定向。身份验证令牌在第一次尝试时也未设置。
这可能与 loginRep.Login
中的委托使用有关。在它里面最终会做这样的事情:
private async Task<LoginResponse> SendLoginRequest(string username, string password)
{
TaskCompletionSource<LoginResponse> tcs = new TaskCompletionSource<LoginResponse>();
LoginResponseCallback callback = null;
callback = new LoginResponseHandler(delegate (response) {
securityService.OnLoginResponse -= callback;
tcs.SetResult(response);
});
securityService.OnLoginResponse += callback;
securityService.SendLoginRequest(username, password);
return await tcs.Task;
}
有人知道发生了什么事吗?如果这是一个死锁,我不会期望看到调试器到达重定向,我也不会期望登录对除第一次以外的所有尝试都有效。
请注意,如果只是跳过发送登录请求并且只是硬编码成功响应的样子,那么表单第一次确实有效。
好的。问题已解决。我展示的两个代码示例没有任何问题。错误是在设置我的安全服务时出现的,所以很遗憾,它是针对这个应用程序的。
也就是说,无限等待的发生是因为 Global.asax.cs 中的 Application_Error 有效地吞噬了某些异常。一旦我将它更改为无论如何总是重定向到我的错误页面,至少当问题发生时它立即重定向到错误页面,而不是从用户的角度来看挂起。