Suppose that I am trying to access an URL from eclipse plugin that uses a SSL certificate. The JRE used by eclipse is readonly. As admin user I am usually running following to add the SSL certificate from the URL.
keytool -import -alias <myName> -file <path/tocertificate> ..
But if regular users are not allowed to run the keytool, is there any other way to allow from java to access a URL address with certificates. Except for this solution that completely disables SSL checking.
Thank you Lidia