Ask Your Question
1

How can the issue of RemoteCertificateNameMismatch in .Net 6 be resolved when calling AWS GetObjectAsync?

asked 2022-05-26 11:00:00 +0000

scrum gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2022-11-28 12:00:00 +0000

plato gravatar image

The issue of RemoteCertificateNameMismatch in .Net 6 when calling AWS GetObjectAsync can be resolved by either ignoring the certificate validation or by updating the root certificates.

  1. Ignoring the certificate validation: You can use the following code to ignore the certificate validation:
System.Net.ServicePointManager.ServerCertificateValidationCallback +=
    (sender, cert, chain, sslPolicyErrors) => true;

var client = new AmazonS3Client();
  1. Updating the root certificates: You can update the root certificates by downloading the latest set of trusted root certificates from the Microsoft website and installing them on your server or local machine.

You can use the following code to update the root certificates:

// initialize HttpClientHandler instance with the default .NET implementation of SSL/TLS
var httpClientHandler = new HttpClientHandler();

// Enable automatic updates of root CA certificates
httpClientHandler.UseDefaultCredentials = true;
httpClientHandler.CheckCertificateRevocationList = true;
httpClientHandler.ServerCertificateCustomValidationCallback = (request, cert, chain, errors) =>
{
    // validate cert with your own logic
    return cert.Subject.Contains("domain.com");
};

var httpClient = new HttpClient(httpClientHandler);
var s3Client = new AmazonS3Client(httpClient);

Once the root certificates are updated, you should not face the RemoteCertificateNameMismatch issue when calling AWS GetObjectAsync.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-05-26 11:00:00 +0000

Seen: 11 times

Last updated: Nov 28 '22