Web services 从HTTPS IIS8网站调用HTTP匿名web服务时出错

Web services 从HTTPS IIS8网站调用HTTP匿名web服务时出错,web-services,wcf,Web Services,Wcf,我正在IIS8 HTTPS网站中运行asp.net应用程序。 应用程序正在尝试访问HTTP web服务,但收到 这是一个电话错误 错误:客户端身份验证方案“匿名”禁止HTTP请求 对web服务的调用可以在我的开发pc运行时进行 在本地作为http 我想知道这是IIS设置更改还是web.config更改,或者HTTP HTTPS站点中是否允许任何请求 正在调用的web服务在web.config中设置为: <system.serviceModel> <bindings>

我正在IIS8 HTTPS网站中运行asp.net应用程序。 应用程序正在尝试访问HTTP web服务,但收到 这是一个电话错误

错误:客户端身份验证方案“匿名”禁止HTTP请求

对web服务的调用可以在我的开发pc运行时进行 在本地作为http

我想知道这是IIS设置更改还是web.config更改,或者HTTP HTTPS站点中是否允许任何请求

正在调用的web服务在web.config中设置为:

<system.serviceModel>
<bindings>
  <basicHttpBinding>
    <binding name="APPO_LookupSoap">
      <security mode="None">
        <transport clientCredentialType="None" proxyCredentialType="None"/>
      </security>          
    </binding>
  </basicHttpBinding>
</bindings>

<client>
  <endpoint address="http://netdocs.xxxxxxxx.co.uk/TroposNetDocsIntegration/APPO_Lookup.asmx" 
  binding="basicHttpBinding" bindingConfiguration="APPO_LookupSoap" 
  contract="RM_WebService.APPO_LookupSoap" name="APPO_LookupSoap" />
</client>

</system.serviceModel>