C# SocketException(0x2746) asp.net一个现有的连接被远程主机强行关闭

问题原因

如果网页能正常访问,那就是TLS版本支持的问题。
我遇到的问题是:
项目用的是NET Framework 4.6.1,但是 learn.microsoft.com 提到
NET Framework 4.6及更早版本 不支持 TLS 1.1 和 TLS 1.2。
NET Framework 4.6.2 及更高版本 支持 TLS 1.1 和 TLS 1.2。
所以我也不知道夹在中间的 4.6.1 是个什么情况。。。

有两种方案

第一种,改代码

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

第二种,改为system.web参数
项目更改为.Net Framework 4.6+,然后修改web.config文件中的system.web参数为以下内容

<system.web>
  <compilation targetFramework="4.6" /> 
  <httpRuntime targetFramework="4.6" /> 
system.web>

问题详细情况参考地址

TLS版本支持描述

https://learn.microsoft.com/zh-cn/mem/configmgr/core/plan-design/security/enable-tls-1-2-client

同类问题描述

https://stackoverflow.com/questions/46223078/c-sharp-httpclient-an-existing-connection-was-forcibly-closed-by-the-remote-host

你可能感兴趣的:(查问题,c#,asp.net,数据库)