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

This problem seems related to this post, but I was not able to infer a solution from the thread.

I noticed this code in an application I inherited (after noting in a log file that an exception was being eaten):

    protected void Session_End(object sender, EventArgs e)
    {
        try
        {
            FormsAuthentication.SignOut();
            FormsAuthentication.RedirectToLoginPage();
            //if (this.Context.Handler is IRequiresSessionState || this.Context.Handler is IReadOnlySessionState)
            //{
            //    FormsAuthentication.SignOut();
            //    FormsAuthentication.RedirectToLoginPage();
            //}
        }
        catch (Exception ex)
        {
            this.GetType().GetLogger().Error(ex);
        }
    }

I am wondering a few things. First, how is SignOut throwing a null reference exception? Is it an exceptional case, or am I doing something inherently wrong in my program? Next, what should I be testing against to head-off this exception before it is thrown?

15:51:57,288 [13] ERROR ASP.global_asax - System.NullReferenceException: Object reference not set to an instance of an object. at System.Web.Security.FormsAuthentication.SignOut() at MvcApplication.Session_End

Thanks

share|improve this question

1 Answer

up vote 9 down vote accepted

It's important to realize that Session_End doesn't get necessarily executed in the the context of an HTTP request. It may run when a session times out. You cannot send anything to the client at that time, because it simply isn't there anymore!

Consequently, you should not try to delete the forms authentication cookie in Session_End. If you want, you should do that sooner, when a "Sign Off" button is clicked somewhere in your application. If you need a user's forms authentication ticket to expire after a timeout occures, you should simply set the cookie expiration time appropriately (possibly equivalent to session timeout value) in the config file.

share|improve this answer
Ahh... I had read something along those lines, but did not understand until I read it worded differently. Is that to say I should be validating against the existence of HttpContext.Current, or that eating the error message is an acceptable means of handling the 'randomness' of when Session_End fires? – Sean Anderson Jul 6 '11 at 23:29
@Sean You should use Session_End to remove the authentication cookie. It serves a different purpose and you can only assume you access server side stuff in that context. Besides, why would you need that in the first place? If you want the cookie to expire, just let it expire by setting its timeout. – Mehrdad Afshari Jul 6 '11 at 23:32
Read your edit. Thanks. – Sean Anderson Jul 6 '11 at 23:34
Hey, one more quick question. I was reading about the quirks of when Session_End is called and it states that (aside from timeouts) the only other way Session_End is called is through Session.Abandon. I found only one instance of Session.Abanadon in the solution I am working on. Do you know of other ways for Session_End to fire? Just looking to ensure that I don't break functionality. – Sean Anderson Jul 6 '11 at 23:42
@Sean No, I don't think there's any other way to run it by default, short of manually messing with stuff under the hood. – Mehrdad Afshari Jul 6 '11 at 23:47
show 3 more comments

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.