9
Autenticação do Windows Express do IIS
Estou tentando usar o IIS Express com o VS2010 para hospedar um aplicativo silverlight. Modifiquei meu arquivo applicationhost.config para permitir a modificação das definições de configuração adequadas. Eu tenho o seguinte no meu web.config: <location path=""> <system.webServer> <security> <authentication> <anonymousAuthentication enabled="false" /> <windowsAuthentication enabled="true" /> </authentication> </security> </system.webServer> </location> Não …