Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Session State Not Available In This Context - In Global.asax

I am getting a 'session state not available in this context' error.

enter image description here

The error is nested in the sender parameter of a number of methods within the Global.asax file:

  • Application_BeginRequest
  • Application_AuthenticateRequest
  • Session_Start
  • Application_Error

The error happens on the very first page load (and all page loads thereafter).

I've added a completely new and empty page, WebForm1.aspx, to the project and made it my start page.

You'd think nothing could go wrong on an empty page. No code of mine is executed, as far as I can see, when loading an empty page. But I'm still getting the session state error.

My project works totally fine. No error pages are shown. There is no incorrect behavior at any time.

But the fact that this session error shows up in the sender parameter of my current project bugs me. This error is not generated in a blank, new project.

What can possibly be the cause of this error in my current project?

How can I trace where the error occurs? I can't set breakpoints in ASP.NET code that's under the hood. Or can I?

Here's my session configuration:

<pages enableSessionState="true" />
<sessionState mode="InProc" cookieless="false" timeout="20" />

Update:

I just found out that a brand new blank project also has this error in the sender object. It's visible in the Application_BeginRequest and Application_AuthenticateRequest methods. But the blank project isn't generating the Application_Error event, like my other project is.

like image 404
Jay Avatar asked Nov 09 '12 21:11

Jay


2 Answers

You are requesting for session state too early in the cycle. you need to do it in Application_AcquireRequestState

like image 118
Emmanuel N Avatar answered Oct 22 '22 14:10

Emmanuel N


"If a tree falls in a forest and no one is around to hear it, does it make a sound?"

Don't watch the Session property at the point where it is not available yet.

like image 38
Igor Avatar answered Oct 22 '22 13:10

Igor