错误:HTTP请求未经授权使用客户端身份验证方案“协商”

时间:2013-08-16 04:05:34

标签: wcf authentication wshttpbinding

当我的客户端程序尝试调用我的WCF服务方法时,我一直收到上述错误。它通过ClientCredential.UserName传递凭据。

我无法弄清楚这里发生了什么,所有与此类问题相关的帖子都没有解决这个问题。

Mine是托管我的WCF服务的Godaddy服务器上的共享托管环境。

配置如下:

<endpoint 
    name="wsBinding" 
    address="" 
    binding="wsHttpBinding" 
    contract="ServiceLib.IBooking" 
    bindingConfiguration="myWSSettings"/>


<bindings>
  <wsHttpBinding>
    <binding name="myWSSettings">
      <security mode="Transport">
        <message clientCredentialType="UserName" />
      </security>
    </binding>
  </wsHttpBinding>
</bindings>

非常感谢任何帮助。

由于 和Sandeep

0 个答案:

没有答案