Is Roles.IsUserInRole behaving as expected in the following simple scenario? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T19:29:24Zhttp://stackoverflow.com/feeds/question/362907http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/362907/is-roles-isuserinrole-behaving-as-expected-in-the-following-simple-scenario2Is Roles.IsUserInRole behaving as expected in the following simple scenario?J c2008-12-12T14:28:33Z2009-12-07T14:17:33Z
<p>In a custom role provider (inheriting from RoleProvider) in .NET 2.0, the IsUserInRole method has been hard-coded to always return true:</p>
<pre><code>public override bool IsUserInRole(string username, string roleName) { return true; }
</code></pre>
<p>In an ASP.NET application configured to use this role provider, the following code returns true (as expected):</p>
<pre><code>Roles.IsUserInRole("any username", "any rolename"); // results in true
</code></pre>
<p>However, the following code returns false:</p>
<pre><code>Roles.IsUserInRole("any rolename"); // results in false
</code></pre>
<p>Note that User.IsInRole("any rolename") is also returning false.</p>
<ol>
<li>Is this the expected behavior?</li>
<li>Is it incorrect to assume that the overload that only takes a role name would still be invoking the overridden IsUserInRole?</li>
</ol>
<p><strong>Update</strong>: Note that there doesn't seem to be an override available for the version that takes a single string, which has led to my assumption in #2.</p>
http://stackoverflow.com/questions/362907/is-roles-isuserinrole-behaving-as-expected-in-the-following-simple-scenario/362990#3629904Answer by Andrew Rollings for Is Roles.IsUserInRole behaving as expected in the following simple scenario?Andrew Rollings2008-12-12T14:59:44Z2008-12-12T14:59:44Z<p>I looked at Roles.IsUserInRole(string rolename) in .net reflector, and it resolves to the following:</p>
<pre><code>public static bool IsUserInRole(string roleName)
{
return IsUserInRole(GetCurrentUserName(), roleName);
}
</code></pre>
<p>I would take a look at your current user. Here's why:</p>
<pre><code>private static string GetCurrentUserName()
{
IPrincipal currentUser = GetCurrentUser();
if ((currentUser != null) && (currentUser.Identity != null))
{
return currentUser.Identity.Name;
}
return string.Empty;
}
</code></pre>
<p>I would be willing to bet this is returning an empty string because you either don't have a Current User, or its name is an empty string or null.</p>
<p>In the <code>IsUserInRole(string username, string roleName)</code> method, there is the following block of code right near the beginning:</p>
<pre><code> if (username.Length < 1)
{
return false;
}
</code></pre>
<p>If your <code>GetCurrentUserName()</code> doesn't return anything meaningful, then it will return false before it calls your overridden method.</p>
<p>Moral to take away from this: Reflector is a great tool :)</p>
http://stackoverflow.com/questions/362907/is-roles-isuserinrole-behaving-as-expected-in-the-following-simple-scenario/1860235#18602350Answer by Junto for Is Roles.IsUserInRole behaving as expected in the following simple scenario?Junto2009-12-07T14:17:33Z2009-12-07T14:17:33Z<p>Also beware if you have selected cacheRolesInCookie="true" in the RoleManager config. If you have added a new role to the database, it might be looking at the cached version in the cookie.</p>
<p>I had this problem and the solution was to delete the cookie and re-login.</p>