I\'m trying to make a request via SSL. The certificate is already installed on the machine and it works via browser.
I am using this request:
System.Text
I solved the problem with this:
ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback ( delegate { return true; } );