java - valid - Problema al usar InstallCert para SSLCertification
unable to find valid certification path to requested target weblogic 12c (0)
Estaba tratando de enviar una solicitud posterior en una url del servidor, luego mostró los siguientes errores
javax.net.ssl.SSLHandshakeException:
sun.security.validator.ValidatorException: PKIX path building failed:
sun.security.provider.certpath.SunCertPathBuilderException: unable to find
valid certification path to requested target
Luego encontré sobre InstallCert.java ( https://www.cs.ucsb.edu/~pconrad/cs56/examples/ldap/SimpleQuery/InstallCert.java ) que permitirá a mi host y puerto enviar la solicitud. Pero cuando intentaba ejecutarlo en el servidor, también mostraba algunos errores.
ubuntu@ip-172-31-28-14:/var/lib/tomcat7/webapps$ java InstallCert 52.39.134.231:8080
Loading KeyStore /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/security/cacerts...
Opening connection to 52.39.134.231:8080...
Iniciando el protocolo de enlace SSL ...
javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?
at sun.security.ssl.InputRecord.handleUnknownRecord(InputRecord.java:671)
at sun.security.ssl.InputRecord.read(InputRecord.java:504)
at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:946)
at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1344)
at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1371)
at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1355)
at InstallCert.main(InstallCert.java:91)
Could not obtain server certificate chain
Y ahora no sé qué hacer para enviar mi pedido.