面臨一個問題:遷移SOAP/REST客戶端從TLS 1.0到1.2 TLS
我有.NET Framework 4.5.2
下運行達網絡的web應用程序。塗施使用到Salesforce通信:
SOAP API
REST API
(https://github.com/developerforce/Force.com-Toolkit-for-NET/)。
SalesForce宣佈在2017年3月4日禁用TLS 1.0加密協議。爲了遷移到TLS 1.2,我需要做一些調整嗎?
在.NET 4.5的默認System.Net.ServicePointManager.SecurityProtocol
是SecurityProtocolType.Tls|SecurityProtocolType.Ssl3
,和.NET 4.5支持高達1.2 TLS
我是否需要更新System.Net.ServicePointManager.SecurityProtocol
?如果是這樣,它是否會影響與其他api的溝通?
我將不勝感激任何幫助。