Hi all,
I need to implement T3S protocol in our project, I am getting SSL handshake exception. Weblogic is using custom trust store so got the root certificate of the secure URL and imported it in the Custom Trust keystore using below command:
keytool -importcert -v -alias root_cert -file certfile_fullpath.crt -keystore trustStore_File.jks -storepass pwd
Set below property to the full path of cert file
-Dweblogic.webservice.client.ssl.trustedcertfile
Still I am getting below exception
[Root exception is java.net.ConnectException:
t3s://secureURL: Destination unreachable; nested exception is:
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; No available router to destination]
Any help would be greatly appreciated. Thanks.