【发布时间】:2012-10-25 12:33:16
【问题描述】:
我想在 wcf 服务中使用 wsHttpBinding,出于安全问题,证书需要 wsHttpBinding,但我想使用没有安全性的 wsHttpBinding,这适用吗?
【问题讨论】:
标签: wcf wshttpbinding
我想在 wcf 服务中使用 wsHttpBinding,出于安全问题,证书需要 wsHttpBinding,但我想使用没有安全性的 wsHttpBinding,这适用吗?
【问题讨论】:
标签: wcf wshttpbinding
是的,您可以将Message 安全与Windows 身份验证一起使用:
<security mode="Message">
<message clientCredentialType="Windows" />
</security>
【讨论】:
我不知道你为什么要使用 wsHttpBinding 而不是 basicHttpBinding,但也许 Difference between BasicHttpBinding and WsHttpBinding 和 Use wsHttpBinding with Windows Authentication 对你有用。
【讨论】: