I'm using an ASHX handler, i want the handler to check if Session != null.

if (context.Session["Username"] != null)

And i get this error pointing this line:

System.NullReferenceException: Object reference not set to an instance of an object.

What's the problem?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted
if (context.Session["Username"] != null)

Does your handler implement IRequiresSessionState? Otherwise Session might not be available.

From MSDN:

Specifies that the target HTTP handler requires read and write access to session-state values. This is a marker interface and has no methods.

link|improve this answer
1  
Yep - original assessment was wrong – BrokenGlass Apr 25 '11 at 0:51
Oh stupid me, I should have add IReadOnlySessionState... I found this link: hanselman.com/blog/… – Danpe Apr 25 '11 at 0:51
feedback

Use it like this. One of the encapsulating objects may be already null:

if (context != null)
  if (context.Session != null)
    if (context.Session["Username"] != null) {
      // Do stuff
}
link|improve this answer
Oh stupid me, I should have add IReadOnlySessionState... I found this link: hanselman.com/blog/… – Danpe Apr 25 '11 at 0:52
3  
It is always safer to stack null checks like the one above, so that you can pinpoint the exact source of the problem. Seems like a chore but pays off. – Teoman Soygul Apr 25 '11 at 0:54
1  
this approach is reasonable if there is an alternate code path if Session is not available - on the other hand if it is a hard assumption to expect the Session to be there and your code depends on this assumption, the fail fast approach would be to just let it throw an exception, otherwise chances are you are masking this problem with a null check. – BrokenGlass Apr 25 '11 at 1:37
1  
Well of course nested if statements should be complemented with nested else's, where it would be suitable to deal with a null object (which shouldn't be null in the first place) and throw a proper exception with a proper message. – Teoman Soygul Apr 25 '11 at 1:43
feedback

Yeah I'd say that check to see if the context is not null first.

link|improve this answer
Oh stupid me, I should have add IReadOnlySessionState... I found this link: hanselman.com/blog/… – Danpe Apr 25 '11 at 0:51
feedback

Your Answer

 
or
required, but never shown

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