vote up 1 vote down star
2

Anyone have any ideas why a servers InProc session state would not be working? Is there a manual reset for it, or a way to check?

Thanks

Session mode is InProc, timeout is 25 minutes.

At this time I'm unsure if the Session object is null, or if the session object is empty and cannot be accessed.

I'm thinking it could be a cookie issue, or it could be that Application_Start doesn't fire properly. What else could it be? IIS settings?

flag

71% accept rate
check the session timeout? – Mauricio Scheffer Sep 29 at 22:29
is set to 25 minutes – unknown (google) Sep 29 at 22:43

1 Answer

vote up 0 vote down

Make sure you aren't setting Session variables in your Application_Start event. That is what the Session_Start is for.

Also, is your application pre-compiled? Check this KB article if so.

Reset Options:

  • Run IISReset

  • Restart the World Wide Web Publishing(W3SVC) service.

  • Manually recycle the App Pool in IIS

link|flag
it's pretty standard. I updated the question. – unknown (google) Sep 29 at 22:44
Post some code, what you are stating in your question doesn't sound right – rick schott Sep 29 at 23:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.