RoleManagerModule and RolePrincipal object - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T15:34:31Zhttp://stackoverflow.com/feeds/question/870839http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/870839/rolemanagermodule-and-roleprincipal-object0RoleManagerModule and RolePrincipal objectSourceC2009-05-15T20:58:53Z2009-05-15T23:02:41Z
<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>
http://stackoverflow.com/questions/870839/rolemanagermodule-and-roleprincipal-object/871213#8712131Answer by bbmud for RoleManagerModule and RolePrincipal objectbbmud2009-05-15T23:02:41Z2009-05-15T23:02:41Z<p>According to <a href="http://www.asp.net/Learn/Security/tutorial-11-cs.aspx" rel="nofollow">this article</a>:</p>
<blockquote>
<p>If the Roles framework is enabled, the RoleManagerModule HTTP Module steps in after the FormsAuthenticationModule and identifies the authenticated user’s roles during the PostAuthenticateRequest event, which fires after the AuthenticateRequest event. If the request is from an authenticated user, the RoleManagerModule overwrites the GenericPrincipal object created by the FormsAuthenticationModule and replaces it with a RolePrincipal object. The RolePrincipal class uses the Roles API to determine what roles the user belongs to.</p>
</blockquote>
<p>So you're right.</p>