0

我在 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>

澄清这个问题的任何帮助都会很棒。

4

2 回答 2

0

您在 web.config 中的安全设置仅为传输:

<security mode="TransportCredentialOnly">

这意味着它在传输过程中被加密,但请求是匿名的。因此,您必须在 IIS 中打开匿名身份验证。

于 2012-12-27T20:30:44.873 回答
0

@Shiraz Bhaiji - 如果您查看 web.config,它使用“TransportCredentialOnly”作为模式。事实证明,如果您打开了 Windows 身份验证并禁用了匿名,您需要将 clientCredentialType 更改为“Ntlm”。

于 2012-12-28T14:05:04.263 回答