We are using ASP.NET Identity 2.0, and want to allow username change. When it is changed, the following happens:
- user is signed out => no error
- username is changed in database => works, the change is visible
- user is signed in with new username => works but still shows old username
The problem is step 3, after signin the user is still returned with the old username, even though in the db it's the new one, and login with the new one worked.
I tried the following to clear existing references:
Context.GetOwinContext().Authentication.SignOut(); // also tried it with DefaultAuthenticationTypes.ExternalCookie
Session.Clear();
Session.Abandon();
// sign in with the new username => no problem
IdentityHelper.SignIn(manager, user, false);
// added this later, when the rest didn't work, but didn't help either
Context.User = new System.Security.Principal.GenericPrincipal(new System.Security.Principal.GenericIdentity(user.UserName), roles);
// tried this too, but didn't help either
System.Web.Security.FormsAuthentication.SetAuthCookie(user.UserName, true);
// after executing the following statement, user always has the old username
var user = Context.User.Identity.GetUserName();
All statements execute without error. Any ideas what else needs doing?
EDIT
Also tried clearing the cache via loop
foreach (System.Collections.DictionaryEntry entry in HttpContext.Current.Cache)
HttpContext.Current.Cache.Remove(entry.Key as string);
and also Context.Application.Clear();
Also tried wiping the user, i.e 'Context.User = null' but this resulted in an exception on signIn. When I execute 'user = manager.Find("newUserName", password)' to sign in with, it returns the user but even though it was retrieved with the new username, it still actually contains the old username. Not sure what else I should clear.
Also posting this answer because I was tearing my hair out :)
I tried everything even the redirect as listed above. However I came across this article http://benfoster.io/blog/aspnet-identity-stripped-bare-mvc-part-2 and noticed that he was using the signout except he was specifying the type so
instead of leaving it blank, I tried it at it worked! without the redirect.
So my code looks like this-