WebRequest fails over TLS 1.1 / 1.2 for Windows Server 2008

前端 未结 2 632
执笔经年
执笔经年 2021-01-21 04:41

I\"m running a .net 4.5 application which makes secure outbound requests to an external server supporting only TLS 1.1 and TLS 1.2. All goes fine when i run the application from

2条回答
  •  青春惊慌失措
    2021-01-21 05:07

    I found an indirect proof for you.

    SecurityProtocolType Enumeration

    Specifies the security protocols that are supported by the Schannel security package.

    Support for SSL/TLS protocols on Windows

    Now let’s come to the point, on Windows the support for SSL/TLS protocols is tied to the SCHANNEL component. So, if a specific OS version doesn’t support a SSL/TLS version, this means it remains unsupported.

    Secure channel compatibility support with SSL and TLS

提交回复
热议问题