首页 > 代码库 > 关于解决 请求被中止:无法建立SSL / TLS安全通道
关于解决 请求被中止:无法建立SSL / TLS安全通道
我使用HttpWebRequest访问其他网站时,出现"请求被中止:无法建立 SSL / TLS安全通道"错误,于是goog和百度了一番,提供的答案基本 是:ServicePointManager.ServerCertificateValidationCallback写委托
public ResponseModel GetHtml( string url) { ServicePointManager.ServerCertificateValidationCallback = ValidateServerCertificate; HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); } private bool ValidateServerCertificate( object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors) { return true ; } |
但这种方法对我无效,该出现的错误还是继续出现.
最终解决办法是,在访问url前执行语句 ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3;即可
public ResponseModel GetHtml( string url) { ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3; HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); } |
关于解决 请求被中止:无法建立SSL / TLS安全通道
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。