问题描述
我遇到的问题是,我的目标.NET框架为4.6.1的Web应用程序与TLS 1.0中的服务器进行默认通信。默认情况下,启用我的网络应用程序进行TLS 1.2通信的最佳方法是什么?
I am running into an issue where my web application with a target .NET framework of 4.6.1 makes a default communication with servers in TLS 1.0. What is the best approach to enable my web app to make TLS 1.2 communication by default ?
推荐答案
感谢您在此发帖。
通常,.NET 4.6及以上版本默认支持TLS1.2。您无需执行任何其他工作来支持TLS 1.2。
Normally, the version of .NET 4.6 and above support TLS1.2 by default. You don’t need to do any additional work to support TLS 1.2.
根据您的说明,尝试将web.config文件的targetFramework设置为4.6。
According to your description, try to set the targetFramework of web.config file to 4.6.
请参阅StackOverFlow中的步骤。
Please refer to the steps in StackOverFlow.
https://stackoverflow.com/questions/45382254/update-net-web-service-to-use-tls-1-2
最诚挚的问候,
Wendy
这篇关于默认情况下启用TLS 1.2的最佳方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!