Reputation: 95
if i am using HttpClientCredentialType.Basic as ClientCredentialType and i only need wcf authentication for security should i worry about certificates and https?
Upvotes: 3
Views: 190
Reputation: 35925
HttpClientCredentialType.Basic means you send your user name and password virtually in plain text. You must never use it without transport level security if it is production code.
Upvotes: 2
Reputation: 6216
If you don't use transport security then the basic authentication can be sniffed.
So, it depends on how secure you need your app to be.
Upvotes: 6