Think this is more a Java issue, and a workaround should affect the JRE.
Not sure if this will work in your case, but a possible solution is to import this certificate into the JRE key store.
A general description can be found on the Sun website . Although the process is quite simple.
First you have to move the necessary HTTPS URL to your browser and export the certificate using SSL properties (donβt remember how to do it in IE, but in Firefox something like Security> View cert> Details> Save as - still not sure, because using non-lingual localization), any type of X.509 should work.
Then you should import it using keytool. Go to the current CF JRE bit, run the following command (replace the arguments with your values) and restart CF:
keytool -keystore <path to keystore> -import -file <path to certificate> -alias <alias>
By the way, there is a user interface tool for this, but I have not used it, so I canβt say if it works fine.
source share