gpt4 book ai didi

c# - 路由请求时 HttpContext.Current.Session 为 null

转载 作者:IT王子 更新时间:2023-10-29 03:53:02 27 4
gpt4 key购买 nike

没有路由,HttpContext.Current.Session有没有,所以我知道 StateServer正在工作中。当我发送请求时,HttpContext.Current.Sessionnull在路由页面中。我在 IIS 7.0 上使用 .NET 3.5 sp1,没有 MVC 预览。看来 AcquireRequestState使用路由时永远不会触发,因此不会实例化/填充 session 变量。

当我尝试访问 Session 变量时,出现此错误:

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 页面的顶部,但仍然没有任何内容。

有什么见解吗?我应该再写一个 HttpRequestHandler实现 IRequiresSessionState

谢谢。

最佳答案

明白了。其实很蠢在我像这样删除并添加 SessionStateModule 后它起作用了:

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

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

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

关于c# - 路由请求时 HttpContext.Current.Session 为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/218057/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com