本文介绍了使用.NET2 XML.dll不支持TLS 1.2 - 需要以后的库或代码更改的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

旧的VS2008应用程序运行良好,从Web服务中提取XML文档。如果服务仅转移到TLS 1.2,则不支持.NET 2 system.net.dll库。

Older VS2008 application working well pull XML documents from webservices. With services moving to TLS 1.2 only, the .NET 2 system.net.dll library will not be supported.

我有一个后来的system.net.dll,我可以替换或者我可以使用另一组库吗?

I there a later system.net.dll that I can substitute in or an alternative set of libraries that I can use?

谢谢。

Don C

推荐答案

感谢您在此发帖。

由于版本过时,我们必须做出一些选择。较旧的VS2008应用程序在.net 3.5中运行良好吗?如果是,我知道,我们可以在.net framework 3.5中使用TLS。

Due to the outdated version, we have to make some choices. Does the older VS2008 application work well in .net 3.5? If yes, as I know, we could use TLS in .net framework 3.5.

如果您在.NET Framework 3.5上运行,则需要安装热补丁,以便TLS 1.2可以由您的程序指定。

If you are running on .NET Framework 3.5, you need to install a hot patch so that TLS 1.2 can be specified by your program.

KB3154518	Reliability Rollup HR-1605 - Support for TLS System Default Versions included in the .NET Framework 3.5.1 on Windows 7 SP1 and Server 2008 R2 SP1
KB3154519	Reliability Rollup HR-1605 - Support for TLS System Default Versions included in the .NET Framework 3.5 on Windows Server 2012
KB3154520	Reliability Rollup HR-1605 -Support for TLS System Default Versions included in the .NET Framework 3.5 on Windows 8.1 and Windows Server 2012 R2
KB3156421	1605 Hotfix rollup 3154521 for the .NET Framework 4.5.2 and 4.5.1 on Windows

最诚挚的问候,

Wendy


这篇关于使用.NET2 XML.dll不支持TLS 1.2 - 需要以后的库或代码更改的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 15:26