Home > Uncategorized > The request was aborted: Could not create SSL/TLS secure channel.

The request was aborted: Could not create SSL/TLS secure channel.

Got this error message today;

+ e {System.Net.WebException:

The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.HttpWebRequest.GetResponse()

The solution to this, in .NET 4.5 is

ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

// Requires .NET 4.5

If you don’t have .NET 4.5 then use

ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;

Categories: Uncategorized
  1. Atul's avatar
    Atul
    November 6, 2019 at 5:31 am

    Thanks, it work.

    Like

  1. No trackbacks yet.

Leave a reply to Atul Cancel reply