ASP.NET Membership - Which RoleProvider to use so User.IsInRole() checks ActiveDirectory Groups? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T22:31:03Z http://stackoverflow.com/feeds/question/863080 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/863080/asp-net-membership-which-roleprovider-to-use-so-user-isinrole-checks-activedi 4 ASP.NET Membership - Which RoleProvider to use so User.IsInRole() checks ActiveDirectory Groups? ropstah 2009-05-14T12:36:51Z 2009-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 &lt;membership&gt; entry is needed at all?</strong></p> <p>What should I change? (<em>and is the &lt;membership&gt; entry needed at all?</em>)</p> <pre><code> &lt;authentication mode="Windows"&gt; &lt;forms name=".ADAuthCookie" timeout="10" /&gt; &lt;/authentication&gt; &lt;membership defaultProvider="ADMembershipProvider"&gt; &lt;providers&gt; &lt;clear/&gt; &lt;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" /&gt; &lt;/providers&gt; &lt;/membership&gt; &lt;roleManager enabled="true" defaultProvider="WindowsProvider"&gt; &lt;providers&gt; &lt;clear /&gt; &lt;add name="WindowsProvider" type="System.Web.Security.WindowsTokenRoleProvider" /&gt; &lt;/providers&gt; &lt;/roleManager&gt; </code></pre> http://stackoverflow.com/questions/863080/asp-net-membership-which-roleprovider-to-use-so-user-isinrole-checks-activedi/899548#899548 0 Answer by hometoast for ASP.NET Membership - Which RoleProvider to use so User.IsInRole() checks ActiveDirectory Groups? hometoast 2009-05-22T19:18:15Z 2009-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#899568 0 Answer by John for ASP.NET Membership - Which RoleProvider to use so User.IsInRole() checks ActiveDirectory Groups? John 2009-05-22T19:22:01Z 2009-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#904215 0 Answer by marc_s for ASP.NET Membership - Which RoleProvider to use so User.IsInRole() checks ActiveDirectory Groups? marc_s 2009-05-24T17:13:56Z 2009-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#904520 0 Answer by RichardOD for ASP.NET Membership - Which RoleProvider to use so User.IsInRole() checks ActiveDirectory Groups? RichardOD 2009-05-24T19:49:06Z 2009-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#904548 1 Answer by blowdart for ASP.NET Membership - Which RoleProvider to use so User.IsInRole() checks ActiveDirectory Groups? blowdart 2009-05-24T20:05:45Z 2009-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>