我在 Asp.Net 应用程序中托管了一些 WCF 服务,这些服务用于通过 Ajax 返回数据。IIS (6.0) 打开了 Windows 身份验证并关闭了匿名访问。我在 web.config 的服务模型部分尝试了各种设置组合,但似乎无法获得正确的组合。我不断收到的错误是:
此服务的安全设置需要“匿名”身份验证,但托管此服务的 IIS 应用程序未启用它。
这是我的 web.config
<configuration> <system.web> <authentication mode="Windows"/> </system.web>
<location path="~/Services">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web> </location>
<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>
<bindings>
<webHttpBinding>
<binding name="default">
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows" proxyCredentialType="Windows"/>
</security>
</binding>
</webHttpBinding>
</bindings>
<behaviors>
<endpointBehaviors>
<behavior name="AspNetAjaxBehavior">
<enableWebScript />
<webHttp />
</behavior>
</endpointBehaviors>
<serviceBehaviors>
<behavior name="defaultServiceBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service name="WFS.SIG.Client.USM.Web.Services.Desks">
<endpoint address="" behaviorConfiguration="AspNetAjaxBehavior" binding="webHttpBinding" contract="WFS.SIG.Client.USM.Web.Services.Desks"/>
</service>
</services>
</system.serviceModel>
</configuration>
澄清这个问题的任何帮助都会很棒。