4

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?

kapa
  • 77,694
  • 21
  • 158
  • 175
ha.aj
  • 41
  • 1
  • 2

2 Answers2

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