.net-4.0 – 从自定义IHttpHandler调用MvcHttpHandler.ExecuteRequest时出错

前端之家收集整理的这篇文章主要介绍了.net-4.0 – 从自定义IHttpHandler调用MvcHttpHandler.ExecuteRequest时出错前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个自定义的IHttpHandler,调用MvcHttpHandler,如 this answer所述.

它在asp.net MVC2中运行良好,但在我使用IISExpress 7.5将代码迁移到MVC4之后,我开始在行上获得InvalidOperationException:

httpHandler.ProcessRequest(HttpContext.Current);

有消息:

‘HttpContext.SetSessionStateBehavior’ can only be invoked before
‘HttpApplication.AcquireRequestState’ event is raised.

ASP.NET Development Server不会出现任何问题.

有谁知道这里发生了什么,以及如何解决它?

解决方法

我相信你需要使用httpContext.Server.TransferRequest和MVC更新.

看到这个问题:MVC3 Application Inside Webforms Application Routing is throwing a HttpContext.SetSessionStateBehavior Error in IIS7.5

原文链接:https://www.f2er.com/aspnet/247623.html

猜你在找的asp.Net相关文章