将客户端SSL证书添加到WCF绑定

时间:2010-07-09 17:30:13

标签: wcf ssl binding client certificate

是否可以在WCF绑定中附加客户端SSL文件(.pfx)文件?我不想使用证书存储。

1 个答案:

答案 0 :(得分:2)

这应该有效

webServiceProxyInstance.ClientCredentials.ClientCertificate.Certificate = new X509Certificate2("path to the pfx file", "password to open the private key");