WebRequest fails over TLS 1.1 / 1.2 for Windows Server 2008

前端 未结 2 595
执笔经年
执笔经年 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:21

    because Windows Server 2008 does not support TLS 1.1 and TLS 1.2 the WebRequest also fails.

    Yes, this is the case.

    Any documentation to point me to?

    From https://support.microsoft.com/en-us/kb/245030:

    Windows Server 2008 supports the following protocols:
     SSL 2.0
     SSL 3.0
     TLS 1.0
    
    Windows Server 2008 R2 and Windows 7 support the following protocols:
     SSL 2.0
     SSL 3.0
     TLS 1.0
     TLS 1.1
     TLS 1.2
    

提交回复
热议问题