To set up an application for Integrated Security you either:
-disable Anonymous access for the application (In InetMgr go to Properties/Directory Security/Edit) and enable "Integrated Windows authentication".
or:
-you can still have Anonymous enabled in IIS but deny the Anonymous user in the web.config of the application:
<authorization>
<deny users="?"/>
</authorization>
thanks
laura
This posting is provided "AS IS" with no warranties, and confers no rights.