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 年前檢視次數 924 次
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 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南