如何在我的项目中添加客户端服务身份验证证书,以便在另一台本地计算机上发送请求?
现在我正在通过添加这样的证书来发送肥皂请求
HttpWebRequest request = CreateWebRequest();
request.ClientCertificates.Add(
new System.Security.Cryptography.X509Certificates.X509Certificate2(
@"C:\Users\User\Desktop\cert.pfx", "password"));
XmlDocument soapEnvelopeXml = new XmlDocument();