Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an HttpHandler that is run on a client page (cross domain, not on our IIS server, etc) and when they click on our embedded link it fires off the Handler on our server. So far everything is working normally.

I am now trying to use the System.Web.HttpContext.Session object but it is null. I am thinking it is null because we don't have a session until our HttpHandler is invoked? And multiple calls to the handler will create a new session per call? If this is the case did MS just disable the Session object when calling into a HttpHandler? Can anyone confirm this?

If this is the case, what do you do to maintain state between calls? Some sort of SQL based data object? A file?

TIA

share|improve this question

3 Answers

up vote 52 down vote accepted

Have your HttpHandler inherit from IRequiresSessionState. It will enable session state use. IRequiresSessionState can be found in the System.Web.SessionState namespace.

share|improve this answer
1  
+1 mmm i didn't knew that one, i love S.O. – Jhonny D. Cano -Leftware- Jul 9 '09 at 22:36
@Michael wouldn't of thought of that in a million years thanks :) – eran otzap Sep 24 '11 at 14:36

I think you have to implement the empty interface IReadOnlySessionState, so the context will be loaded.

edit to add:

According to Michael Morton's answer, you can also implement IRequiresSessionState, which will give you write access also to the Session object

share|improve this answer

try using the current context...

System.Web.HttpContext.Current.Session
share|improve this answer
doesn't work, unless he implements one of the both marker interfaces – Jhonny D. Cano -Leftware- Jul 9 '09 at 22:37
Session will be null without IRequiresSessionState / IReadOnlySessionState – Colin Jul 9 '09 at 22:38
My bad... was thinking of HttpModules. – Joe Davis Jul 9 '09 at 23:00
3  
The OP said: I am now trying to use the System.Web.HttpContext.Session object but it is null. – Oliver Apr 26 '12 at 11:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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