The setup is as follows:
I have an AD Security Group "DOMAIN\MYGROUP" populated with users. I have an LDAP eDir Group "DOMAIN\MYGROUP-Approvers" populated with admins for the group.
In my webconfig I can use the AD Security Group to authenticate and it works
<system.web>
<authorization>
<allow roles="DOMAIN\MYGROUP"/>
<deny users="*"/>
</authorization>
</system.web>
However using the LDAP Group to authenticate does not work.
<system.web>
<authorization>
<allow roles="DOMAIN\MYGROUP-Approvers"/>
<deny users="*"/>
</authorization>
</system.web>
How can I configure my webconfig to work for LDAP Groups the same way it works for AD Security Groups?
Thanks!