码迷,mamicode.com
首页 > 其他好文 > 详细

请求被中止: 未能创建 SSL/TLS 安全通道

时间:2018-04-24 21:51:49      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:sync   未能   ESS   uri   service   通道   创建   type   toc   

出现“请求被中止: 未能创建 SSL/TLS 安全通道。”的问题。

在创建请求地址的前面加了这句代码就可以了

System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

代码示例:

 System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
            HttpWebRequest req = (HttpWebRequest)WebRequest.Create(serverURL);
            req.Method = "POST";
            req.ContentType = "application/x-www-form-urlencoded";
            strNewValue = "cmd=_notify-synch&tx=" + System.Web.HttpContext.Current.Request.QueryString["tx"] + "&at=" + PayPalParameter.BusinessToken;

请求被中止: 未能创建 SSL/TLS 安全通道

标签:sync   未能   ESS   uri   service   通道   创建   type   toc   

原文地址:https://www.cnblogs.com/kekelele/p/8933442.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!