如何在不使用任何证书的情况下在wcf中使用wsHttpBinding

我想在wcf服务中使用wsHttpBinding,wsHttpBinding是安全问题的证书所必需的,但我想使用没有安全性的wsHttpBinding,这是否适用? 最佳答案 是的,您可以在
Windows身份验证中使用Message security:

<security mode="Message">
     <message clientCredentialType="Windows" />
</security>
点赞