Good afternoon,
I am trying to use WebClient with SSL
I can do POST with HTTP. With HTTPS, I have the error of certificate.
Any have converted this code to 4GL? (This is the code to "ignore" SSL validation)
OE 11.7.8 - Windows
Thanks
Baltazar
I am trying to use WebClient with SSL
I can do POST with HTTP. With HTTPS, I have the error of certificate.
Any have converted this code to 4GL? (This is the code to "ignore" SSL validation)
Code:
System.Net.ServicePointManager.ServerCertificateValidationCallback =
new RemoteCertificateValidationCallback(
delegate
{ return true; }
);
OE 11.7.8 - Windows
Thanks
Baltazar