Access Denied Problem

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to authenticate user against a domain for access to my website.
My webserver is a client on the domain. On the local machine policy for the
"Users" group. The SAT domain has an entry for SAT\Domain Users. When I use
the following code users are denied access.
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<customErrors mode="Off" />
<authentication mode="Windows" />
<identity impersonate="true" />
<authorization>
<allow users="SAT\Domain Users" />
<deny users="*" />
</authorization>
</system.web>
</configuration>

any help
 
Hoi Raed Sawalha,

Try swithing the deny and the alow tags. If I'm not mistaken, the deny has
to be set before the alow:

<authorization>
<deny users="?" />
<allow users="*" />
</authorization>

Kind regards,

Michel
 
Back
Top