You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to understand why writing to Session with OpenId Connect disrupts the Sign In process.
For example, if I modify HomeController the way below, the SignIn stops working; By SignIn, it will redirect you to Azure AD and return to the Index unauthenticated.
public ActionResult Index()
{
Session["TEST"] = "TEST"; // Let's make a SignIn disruption
return View();
}
Removing the code during debug will not rectify the process, only if you restart the app.
Any solution or workaround?
The text was updated successfully, but these errors were encountered:
Trying to understand why writing to Session with OpenId Connect disrupts the Sign In process.
For example, if I modify HomeController the way below, the SignIn stops working; By SignIn, it will redirect you to Azure AD and return to the Index unauthenticated.
Removing the code during debug will not rectify the process, only if you restart the app.
Any solution or workaround?
The text was updated successfully, but these errors were encountered: