52
Views
1
Comments
Solved
[Salesforce Connector] Does version 4.0 use TLS 1.2
salesforce-connector
Web icon
Forge asset by Vera Tiago

Does SalesForce Connector Version 4.0 access Sales Force using TLS 1.2? 

Sales force put out a notice that they will disable TLS 1.1 access later in 2019 and I just wanted to make sure that the connector will still work when this happens.

2025-09-25 22-50-38
Hanno
Solution

Yes, it does. The code below is from the extension.

//Change Tls to Tls 1.2
SetTlsMode();

private void SetTlsMode() {
    ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
}
Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.