JORGE Posted March 3, 2020 Report Share Posted March 3, 2020 I'M GETTING THIS ERROR : THE REQUEST WAS ABORTED : COULD NOT CREATE SSL/TLS SECURE CHANNEL, I'M TRYING TO E-FILE 2019 THANK YOU Quote Link to comment Share on other sites More sharing options...
Gilkin Tanah Posted March 20, 2020 Report Share Posted March 20, 2020 same thing happening here. first time encounter this one since using ufile for a long time.please help Quote Link to comment Share on other sites More sharing options...
leanna Posted April 3, 2020 Report Share Posted April 3, 2020 am having the same issue, any suggestions? Quote Link to comment Share on other sites More sharing options...
Alice Posted April 11, 2020 Report Share Posted April 11, 2020 Same problem when trying to netfile the 2019 return. I am using Vista SP2. Quote Link to comment Share on other sites More sharing options...
creigmalta Posted October 18, 2021 Report Share Posted October 18, 2021 The error is generic and there are many reasons why the SSL/TLS negotiation may fail. ServicePointManager.SecurityProtocol property selects the version of the Secure Sockets Layer (SSL) or Transport Layer Security (TLS) protocol to use for new connections; existing c# connections aren't changed. Make sure the ServicePointManager settings are made before the HttpWebRequest is created, else it will not work. Also, you have to enable other security protocol versions to resolve this issue: ServicePointManager.Expect100Continue = true; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 SecurityProtocolType.Tls SecurityProtocolType.Tls11 SecurityProtocolType.Ssl3; //createing HttpWebRequest after ServicePointManager settings HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://google.com/api/") If you create HttpWebRequest before the ServicePointManager settings it will fail and shows the error message. Quote Link to comment Share on other sites More sharing options...
Carine14 Posted October 18, 2021 Report Share Posted October 18, 2021 Hi @creigmaltawe suggest you to contact our support team at support@ufile.ca to help you with this. Thanks Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.