I have implemented Signout functionality for an asp.net mvc application. I have a button called SignOut and for the button click I hooked the code in a Controller class as mentioned below:

public void SignOut() { try { WSFederationAuthenticationModule.FederatedSignOut(null, null);
} finally { if (FederatedAuthentication.SessionAuthenticationModule != null) FederatedAuthentication.SessionAuthenticationModule.DeleteSessionTokenCookie(); } }

I am getting an error in the line FederatedAuthentication.SessionAuthenticationModule.DeleteSessionTokenCookie(); as mentioned below :

Error: Server cannot modify cookies after HTTP headers have been sent.

Can anyone help me regarding the above issue.

Thanks & Regards, Santosh Kumar Patro

link|improve this question

38% accept rate
feedback

1 Answer

FederatedSignOut deletes the SessionTokenCookie and then redirects to the method parameter (which is your case is null).

So the "finally" clause is not required.

It works when you remove it, right?

link|improve this answer
I removed the finally clause containing the if (FederatedAuthentication.SessionAuthenticationModule != null) FederatedAuthentication.SessionAuthenticationModule.DeleteSessionTokenCookie(); }. I have created a custom View called Signout( i.e Signout.cshtml) but is now throwing a jquery error :Object Expected with error numer :-2146823281. Can anyone help me to resolve this issue. – santosh kumar patro Feb 15 at 9:24
I made a sample asp.net mvc3 application and implemented adfs authentication for it. Now I hooked the Signout functionality and found that the application was running fine. Then I found on analysis that there is a jquery plugin file (jquery.mobile-1.0.js) included in the project which is creating the jquery error to be popped up. – santosh kumar patro Feb 15 at 14:13
feedback

Your Answer

 
or
required, but never shown

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