我有一个这样的wsHttpBinding
<wsHttpBinding>
<binding name="binding1">
<security mode="Message" >
<message clientCredentialType="Windows" negotiateServiceCredential="true" />
</security>
</binding>
</wsHttpBinding>如果只有NTLM可用,
这是否意味着WCF将通过SOAP消息发送客户端凭据?
此配置是否与ws-security兼容?
谢谢
发布于 2011-11-11 05:29:24
你的两个问题都得到了肯定的回答。有关详细信息,请阅读http://www.codeproject.com/KB/WCF/HttpBinding.aspx:
由于WsHttBinding支持WS-*,因此默认情况下启用了WS-
。因此数据不是以纯文本形式发送的。
https://stackoverflow.com/questions/8076496
复制相似问题