How to access both DocumentDB and S3 in the same Java program

0

Hello,

I have a Java Spring Boot 2 application that needs to connect to both DocumentDB and S3.

As stated on https://docs.aws.amazon.com/documentdb/latest/developerguide/connect_programmatically.html I downloaded rds-combined-ca-bundle.pem, created a truststore and specified the system parameter javax.net.ssl.trustStore. As a result I can connect to DocumentDB with TLS but when I connect to S3 using the java SDK I now get

com.amazonaws.SdkClientException: Unable to execute HTTP request: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
in
com.amazonaws.services.s3.AmazonS3Client.invoke(AmazonS3Client.java:4365)

Does anyone knows how to connect to DocumentDB and other endpoints that needs SSL in a Java program?
I tried specifying the pem file on the MongoDB URI but the parameter ssl_ca_certs is not known by the driver.

已提问 4 年前902 查看次数
1 回答
0

Hi. You can update the trustStore created for DocumentDB and add the AWS Truststore CA certificates - see keytool -importkeystore along with this blog. The certificates can be found here.

AWS
Mihai A
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则