I want to use wsHttpBinding in a wcf service, the wsHttpBinding is required to a certificate for security issues, but i want using wsHttpBinding without security, is this applicable?
Asked
Active
Viewed 3,185 times
2 Answers
1
Yes you can use Message
security with Windows
authentication:
<security mode="Message">
<message clientCredentialType="Windows" />
</security>

Andrey Marchuk
- 13,301
- 2
- 36
- 52
1
I don't know why you want use wsHttpBinding instead of basicHttpBinding, but maybe Difference between BasicHttpBinding and WsHttpBinding and Use wsHttpBinding with Windows Authentication, can be useful for you.

nahid H
- 46
- 3