Skip to content

Issues with TLS/SSL (If your app stopped working Read Me First!!!) #339

Answered by mozts2005
brandlink-james asked this question in Q&A
Discussion options

You must be logged in to vote

Zendesk is only supporting TLS 1.2 as of June 13, 2018

Options to fix this issue (in the order I would do them)

  1. update your .NET project to .NET 4.7.X
  2. add following code to your application this code will affect all HTTP calls.
    This setting is global and may need to be different for other services.
System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls12 | System.Net.SecurityProtocolType.Tls11 | System.Net.SecurityProtocolType.Tls;

note:
https://docs.microsoft.com/en-us/dotnet/framework/network-programming/tls#support-for-tls-12

Replies: 9 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by mozts2005
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
6 participants
Converted from issue

This discussion was converted from issue #339 on December 09, 2020 07:28.