Configure a Java HTTP Client to Accept Self-Signed Certificates: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 5: Line 5:


=Overview=
=Overview=
If the HTTPS server a Java client is trying to connect to is configured with self-signed SSL certificates, the Java client will fail with:
...
sun.security.validator.ValidatorException: \
PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

Revision as of 10:18, 9 December 2017

Internal

Overview

If the HTTPS server a Java client is trying to connect to is configured with self-signed SSL certificates, the Java client will fail with:

...
sun.security.validator.ValidatorException: \
PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target