simple question...
Given I have an ASP.NET site, which uses a [custom] RoleProvider,
Is there any way in which I can somehow "refresh" the provider without forcing the user to log out of the site and log back in?
I'm looking for something that would be akin to a fictional method
Roles.Refresh()
Specifically, I am looking at this for if an administrator changes a user's roles, the user sessions could maybe refresh themselves every 10 minutes or something.
The roles are cached in a cookie (encrypted of course). The simplest solution will be to disable caching in the web.config file. You will loose some performance.
Else you must somehow resend the auth cookie. One major problem is that many browsers will not accept cookies on redirects with method post.
The other solution that worked for me:
1) In a aspx methodod log the user out and store the username in the session
//Add User to role reviewer and refresh ticket
2) In the loginpage sign the user in again if username is stored in session
I assume you have something like this in your
web.config
:The roles are cached in a cookie , so you can force them to refresh by deleting the cookie. This method worked for me. I added the
cookieName
attribute so that I don't rely on asp.net's default. For your scenario, though, you may be able to just set thecookieTimeout
attribute to something reasonable and be done with it.This method won't update the roles immediately, of course. They will be updated on the next page load after you delete the cookie.
Refresh just need to delete the cookie:
For C#:
Roles.DeleteCookie();
// Works as Roles.Refresh()If you don't want to use cookies you can use Session object to cache the roles. like this:
When you need to update the roles for this user you can do
depend on the custom role provider used.
Just call a "update my role" function on every request? (bad way but at least your sure to update it)