禁用 Web 应用程序的匿名身份验证会导致错误

本文关键字:错误 身份验证 Web 应用程序 禁用 | 更新日期: 2023-09-27 18:36:22

我正在尝试启用Windows身份验证并禁用内部网应用程序的匿名身份验证。 我已经在 IIS7 中启用了 Windows 身份验证并禁用了匿名身份验证,并将我的 Web.Config 设置为使用 Windows 身份验证。

<system.web>
    <authentication mode="Windows" />
    <compilation debug="true" targetFramework="4.0" />
</system.web>

当我部署和运行我的应用程序时,只会加载页眉。 当我在Chrome或IE中导航到我的Service.svc文件时,出现以下错误:

服务的安全设置需要"匿名"身份验证,但未为承载此服务的 IIS 应用程序启用。

System.NotSupportedException:此服务的安全设置需要"匿名"身份验证,但未为承载此服务的 IIS 应用程序启用。

我假设这是我的Web.Config或Service.svc.cs的问题,但我无法识别它。 这仅适用于一个服务。 在IIS7中启用匿名身份验证将解决此问题,但我需要禁用它。

在我的ServiceRefernces.ClientConfig中,我有:

<configuration>
  <system.serviceModel>
    <bindings>
        <basicHttpBinding>
            <binding name="BasicHttpBinding_IService" maxBufferSize="2147483647"
                maxReceivedMessageSize="2147483647">
                <security mode="None" />
            </binding>
        </basicHttpBinding>
    </bindings>
    <client>
  <endpoint address="http://OHARA-WIN7/nightlyweb/Service.svc"       
      binding="basicHttpBinding"
      bindingConfiguration="BasicHttpBinding_IService"    
      contract="ServiceReference2.IService"
      name="BasicHttpBinding_IService" />
    </client>
  </system.serviceModel>
</configuration>

我看过很多帖子,人们被告知将TransportClientCredentialType设置为Ntlm,但VisualStudio无法识别此元素。

禁用 Web 应用程序的匿名身份验证会导致错误

我终于想通了。 在与我经理的一个项目进一步比较后,我注意到我应该将这段代码添加到我的 Web.COnfig 中,而不是像我认为我需要的那样添加我的 ServiceReferences.ClientConfig。

<system.serviceModel>
    <bindings>
        <basicHttpBinding>
            <binding>
                <security mode="TransportCredentialOnly">
                    <transport clientCredentialType="Windows" />
                </security>
            </binding>
        </basicHttpBinding>
    </bindings>
</system.serviceModel>