faced with next problem:
I have .net web application running under .NET Framework 4.5.2
. Applicating communicates to SalesForce using:
SOAP API
REST API
(https://github.com/developerforce/Force.com-Toolkit-for-NET/).
SalesForce announced disabling the TLS 1.0 encryption protocol on March 4, 2017. Do I need to do some adjustments in order to migrate to TLS 1.2?
The default System.Net.ServicePointManager.SecurityProtocol
in .NET 4.5 is SecurityProtocolType.Tls|SecurityProtocolType.Ssl3
, and .NET 4.5 supports up to TLS 1.2
Do I need to update System.Net.ServicePointManager.SecurityProtocol
? If so, can it have an impact on communication with other api's?
I will be grateful for any help.