我需要使用Windows窗体应用程序连接到提供程序的Web服务。他给了我一个证书来访问它,但我有一个安全问题。
我已经完成了以下步骤:
使用此代码调用方法:
`using(service1.MessagesService m = new service1.MessagesService())
{
X509Certificate crt = new X509Certificate(@“C:\ OpenSSL \ bin \ thecert.p12”,string.Empty);
m.ClientCertificates.Add(CRT);
var result = m.AuthoriseTransaction(aut);
this.textBox1.AppendText(result.id.ToString());
}`
我有以下错误:
基础连接已关闭:无法为渠道SSL / TLS建立信任关系。
感谢您的帮助