How can I use wsHttpBinding in wcf without using any certificate

I want to use wsHttpBinding in a wcf service, wsHttpBinding requires a certificate for security problems, but I want to use wsHttpBinding without security, is this applicable?

+4
source share
2 answers

Yes, you can use Message Security with Windows Authentication:

 <security mode="Message"> <message clientCredentialType="Windows" /> </security> 
+1
source

I don’t know why you want to use wsHttpBinding instead of basicHttpBinding, but maybe the Difference between BasicHttpBinding and WsHttpBinding and Using wsHttpBinding with Windows Authentication might be useful to you.

+1
source

Source: https://habr.com/ru/post/1442040/


All Articles