【发布时间】:2018-05-09 01:27:33
【问题描述】:
我们无法使用webrequest 或htmlagilitypack 连接到 https 服务器它显示以下错误
The underlying connection was closed: An unexpected error occurred on a receive.System.Net.WebException: 或 could not create SSL/TLS secure channel on server
我们的代码在 localhost 上运行良好,我们还在我的代码文件中添加了以下部分,但我们无法确定它为什么只在服务器上发生。
ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;
如果有人对此有任何想法,请与我们分享。
【问题讨论】:
标签: c# asp.net asp.net-mvc httpwebrequest html-agility-pack