0

在 Silverlight 5 中使用 IIS Express 和 Windows Authentiction(在 VS 2012 中使用 silverlight 业务应用程序模板)时,状态栏卡在“正在验证...” 切换回 Visual Studio Developer Server,Windows 身份验证工作。

请协助。

4

1 回答 1

0

通过以下应用解决了该问题。

除了 Visual Studio 设置之外,还需要更新额外的配置(在 IIS express 级别)。

  1. 转到 MyDocuments\IISExpress\config\applicationhost
  2. 搜索 windowsAuthentication
  3. 更新:

    3.1 在 sectionGroup name="authentication" 和 section name="windowsAuthentication" 下,将 overrideModeDefault 更新为“Allow”。默认为“拒绝”

    3.2 在 authentication >> windowsAuthentication 下,更新 enabled="true"。默认为假。

  4. 保存并关闭

所有使用 Windows 身份验证并在 IIS express 下运行的项目都将开始顺利运行。

于 2013-10-15T09:24:29.470 回答