HttpContext.Current.Session is null when routing requests - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T16:31:21Zhttp://stackoverflow.com/feeds/question/218057http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/218057/httpcontext-current-session-is-null-when-routing-requests8HttpContext.Current.Session is null when routing requestsLoki2008-10-20T11:03:28Z2009-10-28T17:55:50Z
<p>Without routing, <code>HttpContext.Current.Session</code> is there so I know that the <code>StateServer</code> is working. When I route my requests, <code>HttpContext.Current.Session</code> is <code>null</code> in the routed page. I am using .NET 3.5 sp1 on IIS 7.0, without the MVC previews. It appears that <code>AcquireRequestState</code> is never fired when using the routes and so the session variable isn't instantiated/filled.</p>
<p>When I try to access the Session variables, I get this error:</p>
<p><code>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>.</code></p>
<p>While debugging, I also get the error that the <code>HttpContext.Current.Session</code> is not accessible in that context.</p>
<p>--</p>
<p>My <code>web.config</code> looks like this:</p>
<pre><code><configuration>
...
<system.web>
<pages enableSessionState="true">
<controls>
...
</controls>
</pages>
...
</system.web>
<sessionState cookieless="AutoDetect" mode="StateServer" timeout="22" />
...
</configuration>
</code></pre>
<p>Here's the IRouteHandler implementation:</p>
<pre><code>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;
}
}
</code></pre>
<p>I've also tried to put <code>EnableSessionState="True"</code> on the top of the aspx pages but still, nothing.</p>
<p>Any insights? Should I write another <code>HttpRequestHandler</code> that implements <code>IRequiresSessionState</code>?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/218057/httpcontext-current-session-is-null-when-routing-requests/218068#2180680Answer by Bogdan Maxim for HttpContext.Current.Session is null when routing requestsBogdan Maxim2008-10-20T11:10:19Z2008-10-20T11:10:19Z<p>It seems that you have forgotten to add your state server address in the <a href="http://msdn.microsoft.com/en-us/library/ms972429.aspx" rel="nofollow">config</a> file.</p>
<pre><code> <sessionstate mode="StateServer" timeout="20" server="127.0.0.1" port="42424" />
</code></pre>
http://stackoverflow.com/questions/218057/httpcontext-current-session-is-null-when-routing-requests/218101#2181010Answer by Loki for HttpContext.Current.Session is null when routing requestsLoki2008-10-20T11:29:02Z2008-10-20T11:43:08Z<p>The config section seems sound as it works if when pages are accessed normally. I've tried the other configurations suggested but the problem is still there. </p>
<p>I doubt the problem is in the Session provider since it works without the routing.</p>
http://stackoverflow.com/questions/218057/httpcontext-current-session-is-null-when-routing-requests/218104#2181040Answer by tvanfosson for HttpContext.Current.Session is null when routing requeststvanfosson2008-10-20T11:30:28Z2008-10-20T11:30:28Z<p>What @Bogdan Maxim said. Or change to use InProc if you're not using an external sesssion state server.</p>
<pre><code><sessionState mode="InProc" timeout="20" cookieless="AutoDetect" />
</code></pre>
<p>Look <a href="http://msdn.microsoft.com/en-us/library/h6bb9cz9.aspx" rel="nofollow">here</a> for more info on the SessionState directive.</p>
http://stackoverflow.com/questions/218057/httpcontext-current-session-is-null-when-routing-requests/218532#2185320Answer by mnour for HttpContext.Current.Session is null when routing requestsmnour2008-10-20T13:59:04Z2008-10-20T13:59:04Z<p>I think this part of code make changes to the context.</p>
<pre><code> Page page = BuildManager.CreateInstanceFromVirtualPath(
m_VirtualPath,
typeof(Page)) as Page;// IHttpHandler;
</code></pre>
<p>Also this part of code is useless:</p>
<pre><code> if (page != null)
{
return page;
}
return page;
</code></pre>
<p>It will always return the page wither it's null or not.</p>
http://stackoverflow.com/questions/218057/httpcontext-current-session-is-null-when-routing-requests/221227#2212278Answer by Loki for HttpContext.Current.Session is null when routing requestsLoki2008-10-21T09:01:32Z2009-02-10T09:19:56Z<p>Got it. Quite stupid, actually. It worked after I removed & added the SessionStateModule like so:</p>
<pre><code><configuration>
...
<system.webServer>
...
<modules>
<remove name="Session" />
<add name="Session" type="System.Web.SessionState.SessionStateModule"/>
...
</modules>
</system.webServer>
</configuration>
</code></pre>
<p>Simply adding it won't work since "Session" should have already been defined in the <code>machine.config</code>.</p>
<p>Now, I wonder if that is the usual thing to do. It surely doesn't seem so since it seems so crude...</p>
http://stackoverflow.com/questions/218057/httpcontext-current-session-is-null-when-routing-requests/364711#3647110Answer by Mike for HttpContext.Current.Session is null when routing requestsMike2008-12-13T02:44:27Z2008-12-13T02:44:27Z<p>Nice job! I've been having the exact same problem. Adding and removing the Session module worked perfectly for me too. It didn't however bring back by HttpContext.Current.User so I tried your little trick with the FormsAuth module and sure enough, that did it.</p>
<pre><code><remove name="FormsAuthentication" />
<add name="FormsAuthentication" type="System.Web.Security.FormsAuthenticationModule"/>
</code></pre>
http://stackoverflow.com/questions/218057/httpcontext-current-session-is-null-when-routing-requests/381354#3813541Answer by gandjustas for HttpContext.Current.Session is null when routing requestsgandjustas2008-12-19T15:46:56Z2008-12-19T15:46:56Z<p>Just add attribute runAllManagedModulesForAllRequests="true" to system.webServer\modules in web.config.</p>
<p>This attribute is enabled by default in MVC and Dynamic Data projects.</p>
http://stackoverflow.com/questions/218057/httpcontext-current-session-is-null-when-routing-requests/400291#4002910Answer by Timothy Khouri for HttpContext.Current.Session is null when routing requestsTimothy Khouri2008-12-30T13:54:13Z2008-12-30T13:54:13Z<p>I've had a similar issue, and "solved" it: <a href="http://stackoverflow.com/questions/400236/asp-net-routing-do-custom-routes-completely-skip-everything-in-the-global-asax#400289">http://stackoverflow.com/questions/400236/asp-net-routing-do-custom-routes-completely-skip-everything-in-the-global-asax#400289</a></p>
http://stackoverflow.com/questions/218057/httpcontext-current-session-is-null-when-routing-requests/862989#8629890Answer by Erick for HttpContext.Current.Session is null when routing requestsErick2009-05-14T12:16:03Z2009-05-14T12:16:03Z<p>Thanks Loki and gandjustas!</p>
<p>I was with the same problem (session state works great with "normal" urls, like "http://localhost/Contact.aspx". But was broken with ASP.NET Routing, like "http://localhost/suport/contact").</p>
<p>Both your approachs worked fine.</p>
<p>But I think saw some performance lack with the gandjustas solution (runAllManagedModulesForAllRequests = true).</p>
<p>How this can happen?
Strange...</p>
<p>Do have anybody which saw some performance problem using this property?</p>
http://stackoverflow.com/questions/218057/httpcontext-current-session-is-null-when-routing-requests/1638957#16389570Answer by Alkampfer for HttpContext.Current.Session is null when routing requestsAlkampfer2009-10-28T17:55:50Z2009-10-28T17:55:50Z<p>a better solution is </p>
<p></p>
<p>runAllManagedModulesForAllRequest is a clever thing to do respect removing and resinserting session module.</p>
<p>alk.</p>