I\'m trying go get WCF server and client mutually authenticate each other using SSL certificates on transport level using BasicHttpBinding. Here\'s how the server is getting
If you use standard generated proxy class you can to set transport client credential type to Certificate in App.Config:
Certificate
App.Config
C#
var client = new MyServiceSoapClient() X509Certificate2 cert = CertificateHelper.GetClientCertificate(); client.ClientCredentials.ClientCertificate.Certificate = cert;