centos 未能创建ssl tls安全通道啥意思

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos 未能创建ssl tls安全通道啥意思相关的知识,希望对你有一定的参考价值。

参考技术A centos 未能创建ssl tls安全通道应该是,接口方变更了安全协议,而客户端并未启用该协议。
解决办法:让客户端启用该协议。具体就是在发起网络请求之前确保ServicePointManager.SecurityProtocol中含有服务端所用的安全协议,如果不知道或希望客户端健壮一点,当然最简单的方式就是把所有可用的协议都启用,随你服务端将来怎么换。
CentOS是免费的、开源的、可以重新分发的开源操作系统 ,CentOS(Community Enterprise Operating System,中文意思是社区企业操作系统)是Linux发行版之一。
CentOS Linux发行版是一个稳定的,可预测的,可管理的和可复现的平台,源于Red Hat Enterprise Linux(RHEL)依照开放源代码(大部分是GPL开源协议)规定释出的源码所编译而成。

System.Net.Http.HttpClient POST 未能创建 SSL/TLS 安全通道

HttpRequestException: 发送请求时出错。

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

 

方法调用前加以下代码行即可.

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

        static void Test()
        {
            System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls12;

            using (System.Net.Http.HttpClient httpClient = new System.Net.Http.HttpClient())
            {

                httpClient.MaxResponseContentBufferSize = 256000;
                httpClient.DefaultRequestHeaders.Add("User-Agent", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36");
                httpClient.DefaultRequestHeaders.Add("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9");

                var param = new Dictionary<string, string> { { "", "<?xml version=\'1.0\'?><message><priority>0</priority></message>" } };

                var response = httpClient.PostAsync(@"https://www.baidu.com", new System.Net.Http.FormUrlEncodedContent(param)).Result;

                Console.WriteLine($"Response:{response.Content.ReadAsStringAsync().Result}");


            }

        }

以上是关于centos 未能创建ssl tls安全通道啥意思的主要内容,如果未能解决你的问题,请参考以下文章

解决“未能创建 SSL/TLS 安全通道”异常

SSLWebClient 请求 https 页面出错:未能创建 SSL/TLS 安全通道

System.Net.Http.HttpClient POST 未能创建 SSL/TLS 安全通道

(40)C#里使用WebRequest和出错:请求被中止: 未能创建 SSL/TLS 安全通道

(40)C#里使用WebRequest和出错:请求被中止: 未能创建 SSL/TLS 安全通道

原创C# API 未能创建 SSL/TLS 安全通道 问题解决