Hi
I have a web application hosted on IIS 6 . Annonymous access disabled, Integrated security enabled.
When users access it from other systems on the intranet , they get a password prompt. which is not the expected behavior. Even if I enter something , it doesnt seem to work.
It works fine if I access it on http://locahost/...
Web.config looks like this
<authentication mode="Windows"></authentication>
<authorization >
<allow users="*"/>
<deny users="?"/>
</authorization>
options I have tried.
1.Internetoptions->security->localIntranet->customlevel->user authentication->automatic logon
2.Added the Urls to Trusted sites(servername url and url with IP)
3.Internetoptions- ...
Go to the complete details ...