我试图使用IIS Express与VS2010托管一个silverlight应用程序。我修改了我的applicationhost。配置文件,以允许修改正确的配置设置。我有以下在我的web.config:

<location path="">
  <system.webServer>
    <security>
      <authentication>
        <anonymousAuthentication enabled="false" />
        <windowsAuthentication enabled="true" />
      </authentication>
    </security>
  </system.webServer>
</location>

我没有被身份验证,我的域服务调用作为用户返回一个空记录。我能够在安装VS2010 SP1 BETA后让它工作,但我试图让它只与IIS Express工作。

如何使Windows身份验证与IIS Express一起工作。是否有我遗漏的配置设置?


当前回答

Visual Studio 2010 SP1和2012增加了对IIS Express的支持,无需编辑尖括号。

如果你还没有,右键单击一个web风格的项目,选择“使用IIS Express…”。 完成后,选择web项目并按F4聚焦属性面板。 设置“Windows身份验证”属性为启用,“匿名身份验证”属性为禁用。

我相信这个解决方案比vikomall的选择更好。

选项#1是所有IIS Express站点的全局更改。 选项2将开发难题留在web.config中。 此外,它可能会导致部署到IIS 7.5时出现错误,除非您遵循IIS服务器的applicationHost.config上的“解锁”过程。

上述基于ui的解决方案使用IIS Express的applicationHost中特定于站点的位置元素。配置保持应用程序不变。

更多信息请点击这里: http://msdn.microsoft.com/en-us/magazine/hh288080.aspx

其他回答

Visual Studio 2010 SP1和2012增加了对IIS Express的支持,无需编辑尖括号。

如果你还没有,右键单击一个web风格的项目,选择“使用IIS Express…”。 完成后,选择web项目并按F4聚焦属性面板。 设置“Windows身份验证”属性为启用,“匿名身份验证”属性为禁用。

我相信这个解决方案比vikomall的选择更好。

选项#1是所有IIS Express站点的全局更改。 选项2将开发难题留在web.config中。 此外,它可能会导致部署到IIS 7.5时出现错误,除非您遵循IIS服务器的applicationHost.config上的“解锁”过程。

上述基于ui的解决方案使用IIS Express的applicationHost中特定于站点的位置元素。配置保持应用程序不变。

更多信息请点击这里: http://msdn.microsoft.com/en-us/magazine/hh288080.aspx

如果这些答案都没有帮助,您可能需要调整项目属性。查看另一个StackOverflow的答案如何做到这一点:

https://stackoverflow.com/a/20857049/56621

选项1:

编辑\My Documents\IISExpress\config\applicationhost。配置文件并启用windowsAuthentication,即:

<system.webServer>
...
  <security>
...
    <authentication>
      <windowsAuthentication enabled="true" />
    </authentication>
...
  </security>
...
</system.webServer>

选项2:

解锁\My Documents\IISExpress\config\applicationhost中的windowsAuthentication部分。配置如下

<add name="WindowsAuthenticationModule" lockItem="false" />

将所需身份验证类型的覆盖设置更改为“允许”

<sectionGroup name="security">
    ...
    <sectionGroup name="system.webServer">
        ...
        <sectionGroup name="authentication">
            <section name="anonymousAuthentication" overrideModeDefault="Allow" />
            ...
            <section name="windowsAuthentication" overrideModeDefault="Allow" />
    </sectionGroup>
</sectionGroup>

在应用程序的web.config中添加以下内容

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
      <security>
        <authentication>
          <windowsAuthentication enabled="true" />
        </authentication>
      </security>
    </system.webServer>
</configuration>

以下链接可能会有所帮助: http://learn.iis.net/page.aspx/376/delegating-configuration-to-webconfig-files/

在安装VS 2010 SP1后,应用选项1 + 2可能需要让windows身份验证工作。此外,您可能需要在IIS Express applicationhost.config中将匿名身份验证设置为false:

<authentication>

            <anonymousAuthentication enabled="false" userName="" />

对于VS2015, IIS Express applicationhost配置文件可能位于这里:

$(solutionDir)\.vs\config\applicationhost.config

项目文件中的<UseGlobalApplicationHostFile>选项选择默认的或特定于解决方案的配置文件。

根据booij boy的回答,检查你是否检查了“windows身份验证”功能 控制面板->程序->打开或关闭窗口功能->互联网信息服务->万维网服务->安全

此外,使用火狐浏览器和ie浏览器时似乎也有很大的不同。 启用“windows身份验证”后,它为我工作,但只在IE。

如果:1)您的网站在升级到Visual Studio 2015之前使用Windows身份验证,2)并且您的网站正在尝试加载/登录,这个答案可能会有所帮助。Aspx(即使你的网站上没有这样的文件)。

将以下两行添加到站点的Web.config的appsettings部分。

<add key="autoFormsAuthentication" value="false" />
<add key="enableSimpleMembership" value="false"/>