HttpContext.Current.Session is null when routing requests - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T16:31:21Z http://stackoverflow.com/feeds/question/218057 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/218057/httpcontext-current-session-is-null-when-routing-requests 8 HttpContext.Current.Session is null when routing requests Loki 2008-10-20T11:03:28Z 2009-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 &lt;configuration&gt;.</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>&lt;configuration&gt; ... &lt;system.web&gt; &lt;pages enableSessionState="true"&gt; &lt;controls&gt; ... &lt;/controls&gt; &lt;/pages&gt; ... &lt;/system.web&gt; &lt;sessionState cookieless="AutoDetect" mode="StateServer" timeout="22" /&gt; ... &lt;/configuration&gt; </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 &amp;&amp; !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#218068 0 Answer by Bogdan Maxim for HttpContext.Current.Session is null when routing requests Bogdan Maxim 2008-10-20T11:10:19Z 2008-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> &lt;sessionstate mode="StateServer" timeout="20" server="127.0.0.1" port="42424" /&gt; </code></pre> http://stackoverflow.com/questions/218057/httpcontext-current-session-is-null-when-routing-requests/218101#218101 0 Answer by Loki for HttpContext.Current.Session is null when routing requests Loki 2008-10-20T11:29:02Z 2008-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#218104 0 Answer by tvanfosson for HttpContext.Current.Session is null when routing requests tvanfosson 2008-10-20T11:30:28Z 2008-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>&lt;sessionState mode="InProc" timeout="20" cookieless="AutoDetect" /&gt; </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#218532 0 Answer by mnour for HttpContext.Current.Session is null when routing requests mnour 2008-10-20T13:59:04Z 2008-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#221227 8 Answer by Loki for HttpContext.Current.Session is null when routing requests Loki 2008-10-21T09:01:32Z 2009-02-10T09:19:56Z <p>Got it. Quite stupid, actually. It worked after I removed &amp; added the SessionStateModule like so:</p> <pre><code>&lt;configuration&gt; ... &lt;system.webServer&gt; ... &lt;modules&gt; &lt;remove name="Session" /&gt; &lt;add name="Session" type="System.Web.SessionState.SessionStateModule"/&gt; ... &lt;/modules&gt; &lt;/system.webServer&gt; &lt;/configuration&gt; </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#364711 0 Answer by Mike for HttpContext.Current.Session is null when routing requests Mike 2008-12-13T02:44:27Z 2008-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>&lt;remove name="FormsAuthentication" /&gt; &lt;add name="FormsAuthentication" type="System.Web.Security.FormsAuthenticationModule"/&gt; </code></pre> http://stackoverflow.com/questions/218057/httpcontext-current-session-is-null-when-routing-requests/381354#381354 1 Answer by gandjustas for HttpContext.Current.Session is null when routing requests gandjustas 2008-12-19T15:46:56Z 2008-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#400291 0 Answer by Timothy Khouri for HttpContext.Current.Session is null when routing requests Timothy Khouri 2008-12-30T13:54:13Z 2008-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#862989 0 Answer by Erick for HttpContext.Current.Session is null when routing requests Erick 2009-05-14T12:16:03Z 2009-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#1638957 0 Answer by Alkampfer for HttpContext.Current.Session is null when routing requests Alkampfer 2009-10-28T17:55:50Z 2009-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>