ASP.NET Membership - Which RoleProvider to use so User.IsInRole() checks ActiveDirectory Groups? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T22:31:03Zhttp://stackoverflow.com/feeds/question/863080http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/863080/asp-net-membership-which-roleprovider-to-use-so-user-isinrole-checks-activedi4ASP.NET Membership - Which RoleProvider to use so User.IsInRole() checks ActiveDirectory Groups?ropstah2009-05-14T12:36:51Z2009-05-24T20:05:45Z
<p>Very simple question actually:</p>
<p>I currently have IIS anonymous access disabled, users are automatically logged on using their Windows login. However calling User.IsInRole("Role name") returns false. I double-checked User.Identity.Name() and the "Role name" and it should return true.</p>
<p>I currently have this in my Web.Config:</p>
<p><strong><em>UPDATE</em></strong><br />
I was calling User.IsInRole("Role name") where I should call User.IsInRole("DOMAIN\Role name") </p>
<p><strong>However I still like to know if the <membership> entry is needed at all?</strong></p>
<p>What should I change? (<em>and is the <membership> entry needed at all?</em>)</p>
<pre><code> <authentication mode="Windows">
<forms
name=".ADAuthCookie"
timeout="10" />
</authentication>
<membership defaultProvider="ADMembershipProvider">
<providers>
<clear/>
<add
name="ADMembershipProvider"
type="System.Web.Security.ActiveDirectoryMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
connectionStringName="ADConnectionString"
connectionUsername="XXX\specialAdUser"
connectionPassword="xx"
/>
</providers>
</membership>
<roleManager enabled="true" defaultProvider="WindowsProvider">
<providers>
<clear />
<add name="WindowsProvider" type="System.Web.Security.WindowsTokenRoleProvider" />
</providers>
</roleManager>
</code></pre>
http://stackoverflow.com/questions/863080/asp-net-membership-which-roleprovider-to-use-so-user-isinrole-checks-activedi/899548#8995480Answer by hometoast for ASP.NET Membership - Which RoleProvider to use so User.IsInRole() checks ActiveDirectory Groups?hometoast2009-05-22T19:18:15Z2009-05-22T19:18:15Z<p>The membership provider here isn't going to help. The ActiveDirectoryMembershipProvider seems to best(only?) fit with Forms authentication. </p>
http://stackoverflow.com/questions/863080/asp-net-membership-which-roleprovider-to-use-so-user-isinrole-checks-activedi/899568#8995680Answer by John for ASP.NET Membership - Which RoleProvider to use so User.IsInRole() checks ActiveDirectory Groups?John2009-05-22T19:22:01Z2009-05-22T19:22:01Z<p>Pretty sure the only thing you need in there is the roleManager group (along with the base authentication mode='windows' setting)</p>
http://stackoverflow.com/questions/863080/asp-net-membership-which-roleprovider-to-use-so-user-isinrole-checks-activedi/904215#9042150Answer by marc_s for ASP.NET Membership - Which RoleProvider to use so User.IsInRole() checks ActiveDirectory Groups?marc_s2009-05-24T17:13:56Z2009-05-24T17:13:56Z<p>Out of the box, there's no role provider to use Active Directory directly. You can use the role table in the ASP.NET membership- and role-system, or you can use Authorization Manager (AzMan).</p>
<p>There's an article on <a href="http://www.codeproject.com/KB/aspnet/active%5Fdirectory%5Froles.aspx" rel="nofollow">CodeProject</a> which shows the implementation of a role provider which works against the Active Directory - with full source code. Maybe this helps?</p>
<p>Marc</p>
http://stackoverflow.com/questions/863080/asp-net-membership-which-roleprovider-to-use-so-user-isinrole-checks-activedi/904520#9045200Answer by RichardOD for ASP.NET Membership - Which RoleProvider to use so User.IsInRole() checks ActiveDirectory Groups?RichardOD2009-05-24T19:49:06Z2009-05-24T19:49:06Z<p>BlogEngine.NET has an <a href="http://www.codeplex.com/BlogEngineADRP" rel="nofollow">Active Directory role provider</a>.</p>
http://stackoverflow.com/questions/863080/asp-net-membership-which-roleprovider-to-use-so-user-isinrole-checks-activedi/904548#9045481Answer by blowdart for ASP.NET Membership - Which RoleProvider to use so User.IsInRole() checks ActiveDirectory Groups?blowdart2009-05-24T20:05:45Z2009-05-24T20:05:45Z<p>If you use Windows authentication IsInRole will work with no extra configuration, as long as you remember to prefix the role with the domain, i.e. DOMAIN\groupName.</p>
<p>In addition you can role (pun intended) your own and use Windows auth against, for example, a SQL Role Provider, where you don't want your AD littered with custom roles for your application.</p>
<p>So no, you don't need the provider configuration at all.</p>