
1 respuesta
This is most likely related to the changes Salesforce have been making around SSL 3.0 and TLS support. See Ensuring my application complies with SSL3.0 being disabled? (http://salesforce.stackexchange.com/a/54962/102)You can configure .NET to use a specific security profile when creating a secure connection to the Salesforce web services. Try something like:
System.Net.ServicePointManager.SecurityProtocol =
SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;
What version of .NET are you using?
Failing that, check the the certificates look correct when you access Salesforce.