I am getting the following error during a web service request to a remote web service:
Could not establish trust relationship for the SSL/TLS secure c
Add a certificate validation handler. Returning true will allow ignoring the validation error:
true
ServicePointManager .ServerCertificateValidationCallback += (sender, cert, chain, sslPolicyErrors) => true;