Error : ID4243: Could not create a SecurityToken.
For persons who worked on WIF Programming would encounter the following error,
ID4243: Could not create a SecurityToken. A token was not found in the token cache and no cookie was found in the context
We will be getting this error when the browser sends the cookie to the server and when sever validates the token and it fails then we may get this error. The end user can't do anything since the browser sends the token to the server always until the user manually clears the cookie from the browser.
To handle this scenario we can srite the below list of code in the Global.asax.cs
Basically, what it does is it will check for the excetion type and then it tries to sign out the user (delete the cookie informations) and redirect to the requested page.
It is as simple as it is :)
Reference:
What is WIF Claims?
http://msdn.microsoft.com/en-us/library/hh873304%28v=vs.110%29.aspx
ID4243: Could not create a SecurityToken. A token was not found in the token cache and no cookie was found in the context
We will be getting this error when the browser sends the cookie to the server and when sever validates the token and it fails then we may get this error. The end user can't do anything since the browser sends the token to the server always until the user manually clears the cookie from the browser.
To handle this scenario we can srite the below list of code in the Global.asax.cs
Basically, what it does is it will check for the excetion type and then it tries to sign out the user (delete the cookie informations) and redirect to the requested page.
It is as simple as it is :)
protected void Application_OnError()
{
var ex = Context.Error;
if (!(ex is SecurityTokenException)) return;
Context.ClearError();
if (FederatedAuthentication.SessionAuthenticationModule != null)
{
FederatedAuthentication.SessionAuthenticationModule.SignOut();
}
Response.Redirect(Request.Url.ToString());
}
Reference:
What is WIF Claims?
http://msdn.microsoft.com/en-us/library/hh873304%28v=vs.110%29.aspx
Comments
Big data training in chennai
Big Data Course in Chennai
advantages of r
features of r programming language
Angularjs Training in Chennai
Angularjs Certification Online
Angularjs Training In Bangalore