I am using a webservice from a remote server over ssl.
the remote server has a tomcat FE. we had verisign sign the remote server certificate and the certificate chain is:
o:remote.server.com
i:VeriSign Class 3 Secure Server CA - G3
i:VeriSign Class 3 Public Primary Certification Authority - G5
we added this certificate to tomcat's keystore and also added verisign's intermediate certificate which in which:
o:VeriSign Class 3 Public Primary Certification Authority - G5
i:Class 3 Public Primary Certification Authority
when i invoke the webservice from my server i get an SSL handshake exception:No trusted certificate found
on my server's JVM cacerts i have "Class 3 Public Primary Certification Authority" but don't have the "VeriSign Class 3 Public Primary Certification Authority - G5 certificate."
if i add the "VeriSign Class 3 Public Primary Certification Authority - G5" certificate to the jvm then i stop getting the exception. however it is my understanding that tomcat should chain the certificates so that when my server gets the remote certificate it will see "Class 3 Public Primary Certification Authority" as the root authority.
why isn't this happening here?