POST request remote URL error "The underlying connection has been closed ... Authentication.authenticationexception ... Invalid Remote certificate "solution

Source: Internet
Author: User

When we sometimes write the POST request URL in code the remote address will report "The underlying connection has been closed: failed to establish a trust relationship for the SSL/TLS secure channel." ---> System.Security.Authentication.AuthenticationException: The remote certificate is not valid according to the verification process . This exception is due to the fact that the domain name used by the remote URL does not have a certificate purchased, so it is resolved in the following way:

PS: Set the "Get or set callback to validate server certificate" before the Create URL is always true, as follows

The POST request must be: System.Net.HttpWebRequest request = (System.Net.HttpWebRequest) System.Net.WebRequest.Create (URL);

Before this code, add: Servicepointmanager.servercertificatevalidationcallback + = remotecertificatevalidate;

The Remotecertificatevalidate event code is as follows:

private static bool Remotecertificatevalidate (object sender, X509Certificate cert,x509chain chain, sslpolicyerrors Error
{
In order to pass certificate validation, always return True
return true;
}

Get

POST request remote URL error "The underlying connection has been closed ... Authentication.authenticationexception ... Invalid Remote certificate "solution

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.