路由请求时,HttpContext.Current.Session为null

本文关键字:Session null Current HttpContext 请求 路由 | 更新日期: 2023-09-27 17:47:50

在没有路由的情况下,HttpContext.Current.Session在那里,所以我知道StateServer正在工作。当我路由请求时,HttpContext.Current.Session是路由页面中的null。我在IIS 7.0上使用.NET 3.5 sp1,没有MVC预览。似乎AcquireRequestState在使用路由时从未被激发,因此会话变量没有被实例化/填充。

当我尝试访问会话变量时,我会得到以下错误:

base {System.Runtime.InteropServices.ExternalException} = {"Session state can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive. Please also make sure that System.Web.SessionStateModule or a custom session state module is included in the <configuration>.

在调试时,我还得到一个错误,即HttpContext.Current.Session在该上下文中不可访问。

--

我的web.config看起来像这样:

<configuration>
  ...
  <system.web>
    <pages enableSessionState="true">
      <controls>
        ...
      </controls>
    </pages>
    ...
  </system.web>
  <sessionState cookieless="AutoDetect" mode="StateServer" timeout="22" />
  ...
</configuration>

以下是IRouteHandler的实现:

public class WebPageRouteHandler : IRouteHandler, IRequiresSessionState
{
    public string m_VirtualPath { get; private set; }
    public bool m_CheckPhysicalUrlAccess { get; set; }
    public WebPageRouteHandler(string virtualPath) : this(virtualPath, false)
    {
    }
    public WebPageRouteHandler(string virtualPath, bool checkPhysicalUrlAccess)
    {
        m_VirtualPath = virtualPath;
        m_CheckPhysicalUrlAccess = checkPhysicalUrlAccess;
    }
    public IHttpHandler GetHttpHandler(RequestContext requestContext)
    {
        if (m_CheckPhysicalUrlAccess
            && !UrlAuthorizationModule.CheckUrlAccessForPrincipal(
                   m_VirtualPath,
                   requestContext.HttpContext.User,
                   requestContext.HttpContext.Request.HttpMethod))
        {
            throw new SecurityException();
        }
        string var = String.Empty;
        foreach (var value in requestContext.RouteData.Values)
        {
            requestContext.HttpContext.Items[value.Key] = value.Value;
        }
        Page page = BuildManager.CreateInstanceFromVirtualPath(
                        m_VirtualPath, 
                        typeof(Page)) as Page;// IHttpHandler;
        if (page != null)
        {
            return page;
        }
        return page;
    }
}

我也尝试过将EnableSessionState="True"放在aspx页面的顶部,但仍然一无所获。

有什么见解吗?我应该编写另一个实现IRequiresSessionStateHttpRequestHandler吗?

谢谢。

路由请求时,HttpContext.Current.Session为null

明白了。其实很愚蠢。在我删除&添加了SessionStateModule,如下所示:

<configuration>
  ...
  <system.webServer>
    ...
    <modules>
      <remove name="Session" />
      <add name="Session" type="System.Web.SessionState.SessionStateModule"/>
      ...
    </modules>
  </system.webServer>
</configuration>

简单地添加它是行不通的,因为"会话"应该已经在machine.config中定义了。

现在,我想知道这是否是通常的做法。看起来肯定不是这样,因为它看起来很粗糙。。。

只需在web.config中将属性runAllManagedModulesForAllRequests="true"添加到system.webServer'modules即可。

此属性在MVC和动态数据项目中默认启用。

runAllManagedModulesForAllRequests=true实际上是一个非常糟糕的解决方案。这将我的应用程序的加载时间增加了200%。更好的解决方案是手动删除和添加会话对象,并避免同时运行所有托管模块属性。

这些解决方案对我都不起作用。我在global.asax.cs中添加了以下方法,然后Session不为空:

protected void Application_PostAuthorizeRequest()
{
    HttpContext.Current.SetSessionStateBehavior(SessionStateBehavior.Required);
}

@Bogdan Maxim说了什么。或者,如果不使用外部会话状态服务器,则更改为使用InProc。

<sessionState mode="InProc" timeout="20" cookieless="AutoDetect" />

有关SessionState指令的更多信息,请查看此处。

干得好!我一直有同样的问题。添加和删除会话模块对我来说也非常有效。然而,HttpContext.Current.User并没有恢复它,所以我在FormsAuth模块上尝试了你的小技巧,果然做到了

<remove name="FormsAuthentication" />
<add name="FormsAuthentication" type="System.Web.Security.FormsAuthenticationModule"/>

您似乎忘记在配置文件中添加状态服务器地址。

 <sessionstate mode="StateServer" timeout="20" server="127.0.0.1" port="42424" />

如果页面访问正常,config部分看起来很正常。我已经尝试了建议的其他配置,但问题仍然存在。

我怀疑问题出在会话提供程序中,因为它在没有路由的情况下工作。

我认为这部分代码对上下文进行了更改。

 Page page = BuildManager.CreateInstanceFromVirtualPath(
                        m_VirtualPath, 
                        typeof(Page)) as Page;// IHttpHandler;

同样,这部分代码也是无用的:

 if (page != null)
 {
     return page;
 }
 return page;

无论是否为空,它都会返回页面。

我在会话适配器中缺少对System.web.mvc dll的引用,添加该引用修复了问题。

希望它能帮助其他人经历同样的情况。

更好的解决方案是

在删除和重新插入会话模块方面,runAllManagedModulesForAllRequest是一件聪明的事情。

alk。