D
Dale
I have a problem with implementing windows groups as a
form of role based security.
I have implemented it exactly as described in
http://support.microsoft.com/?id=323176
I am running Windows 2000 Server and ASP.NET framework
1.1 we are using Active Directory for groups. IIS is
setup for windows authentication
When I use the following syntax. It doesn't work
<authentication mode="Windows" />
<authorization>
<allow roles="domainname\WEB Group" />
<deny users="*" />
</authorization>
However if i do it by user it does work e.g.
<authentication mode="Windows" />
<authorization>
<allow users="domainname\dale" />
<deny users="*" />
</authorization>
I have also tried with and without the impersonation tag
<identity impersonate="true" />
I have noticed other similiar posts but I havent seen any
conclusive answers to this problem.
Any help would be greatly appreciated
Thanks
Dale
form of role based security.
I have implemented it exactly as described in
http://support.microsoft.com/?id=323176
I am running Windows 2000 Server and ASP.NET framework
1.1 we are using Active Directory for groups. IIS is
setup for windows authentication
When I use the following syntax. It doesn't work
<authentication mode="Windows" />
<authorization>
<allow roles="domainname\WEB Group" />
<deny users="*" />
</authorization>
However if i do it by user it does work e.g.
<authentication mode="Windows" />
<authorization>
<allow users="domainname\dale" />
<deny users="*" />
</authorization>
I have also tried with and without the impersonation tag
<identity impersonate="true" />
I have noticed other similiar posts but I havent seen any
conclusive answers to this problem.
Any help would be greatly appreciated
Thanks
Dale