IIS Express Windows Authentication

I’m trying to use IIS Express with VS2010 to host a silverlight application. I modified my applicationhost.config file to allow for modification of the proper configuration settings. I have the following in my web.config: <location path=””> <system.webServer> <security> <authentication> <anonymousAuthentication enabled=”false” /> <windowsAuthentication enabled=”true” /> </authentication> </security> </system.webServer> </location> I am not being authenticated and … Read more