If RoleManagerModule creates security context of the user, then… - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T04:04:44Zhttp://stackoverflow.com/feeds/question/849536http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/849536/if-rolemanagermodule-creates-security-context-of-the-user-then0If RoleManagerModule creates security context of the user, then…SourceC2009-05-11T19:01:09Z2009-05-11T19:01:09Z
<p>Hello,</p>
<p><br></p>
<p>According to my book, if role management is enabled, then <em>RoleManagerModule</em> creates the security context of the user by assigning <em>RolePrincipal</em> object to the <em>HttpRequest.User</em>. But isn’t security context already created ( thus principal object being assigned to <em>HttpContext.User</em> ) by <em>FormsAuthenticationModule</em>, which is called prior to <em>RoleManagerModule</em> being called?</p>
<p>I’m asking this, because in the following code principal object assigned to <em>HttpRequest.User</em> already exists, even though <em>RoleManagerModule</em> has not yet been called:</p>
<p><br></p>
<pre><code> protected void Application_AuthenticateRequest(Object sender, EventArgs e)
{
if (User.Identity.IsAuthenticated && Roles.Enabled)
{
//here we subscribe user to a role via Roles.AddUserToRole()
}
}
</code></pre>
<p><br></p>
<p>Thus is principal object created by <em>FormsAuthenticationModule</em> and assigned to <em>HttpRequest.User</em>, later replaced by <em>RolePrincipal</em> object ( created by <em>RoleManagerModule</em> )?</p>
<p><br></p>
<p>thanx</p>