If RoleManagerModule creates security context of the user, then… - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T04:04:44Z http://stackoverflow.com/feeds/question/849536 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/849536/if-rolemanagermodule-creates-security-context-of-the-user-then 0 If RoleManagerModule creates security context of the user, then… SourceC 2009-05-11T19:01:09Z 2009-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 &amp;&amp; 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>