The request was aborted: Could not create SSL/TLS secure channel.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: The request was aborted: Could not create SSL/TLS secure channel.
In a .Net environment, the following code eliminates the error. ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: The request was aborted: Could not create SSL/TLS secure channel.
I am experiencing the same problem. What worked?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: The request was aborted: Could not create SSL/TLS secure channel.
Pls. let me know how it was fixed? I am experiencing the same problem.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: The request was aborted: Could not create SSL/TLS secure channel.
Hi Ricardo,
I am experiencing the same problem. I have successful attempts in SOAP UI but unsuccessful attempts in c# environment. Are you suggesting that the fix is in the openSSL statement that you provided?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: The request was aborted: Could not create SSL/TLS secure channel.
I had the same issue using c# (4.5.2). Just add the following lines before you send the request:
ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
request.ProtocolVersion = HttpVersion.Version10;
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: The request was aborted: Could not create SSL/TLS secure channel.
Hi, in my case.
Go to propierties of project and update the target Framework from 4.5.2 to 4.6.1 and voilà!
- « Previous
-
- 1
- 2
- Next »