This is the first time I'm useing Integrated Security, and I am probably missing something silly.
I have IIS set to use Integrated Security and anonymous access is disabled.
My web.config file is set to:
<authentication mode="Windows" />
<authorization>
<allow roles="Domain Admins" />
<deny users="*" />
This causes the login prompt to appear when accessing the web form, and I cannot log in. I don't think that it is doing any real authentication. When I "allow" a specific user and "deny" another, anybody can get in.
Does anybody know what I could be missing?
Thanks
I have IIS set to use Integrated Security and anonymous access is disabled.
My web.config file is set to:
<authentication mode="Windows" />
<authorization>
<allow roles="Domain Admins" />
<deny users="*" />
This causes the login prompt to appear when accessing the web form, and I cannot log in. I don't think that it is doing any real authentication. When I "allow" a specific user and "deny" another, anybody can get in.
Does anybody know what I could be missing?
Thanks