Hi, everyone.
I’m having an issue with httprequest.
It was working fine for a few a months, but something changed in TLS (at url destination i suppose) and it began throwing:
“Could not create SSL/TLS)”
I solved it using “INVOKE CODE” and using System.NET.Webclient BUT! with this options:
System.Net.ServicePointManager.Expect100Continue = True
System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Ssl3 Or System.Net.SecurityProtocolType.Tls Or System.Net.SecurityProtocolType.Tls11 Or System.Net.SecurityProtocolType.Tls12
Is there a way to FORCE the UIPATH activity “HTTPRequest” to use the above config?.. In the IE options i have all SLL and TLS Checked… But i repeat, nothing changed in my enviroments (all are failing now)…
Thanks in advance.