I want to enable SSL in WCF and what needs to be done on the client side of WCF?
I found out what I can do as shown below.
BasicHttpBinding b = new BasicHttpBinding();
b.Security.Mode = BasicHttpSecurityMode.Transport ;
b.Security.Transport.ClientCredentialType = HttpClientCredentialType.Windows.
But what about the client side? Thank.
Edit: WCF is hosted in IIS, and my wpf application will use this. The client will install this application on their PC.
source
share