I’m new to java and I have a problem very similar to this.. suppress a digital certificate when prompted. I have full control over the environment. Any possible solutions? Expert Exchange question
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Hopefully there is no way to suppress the warning, because that would be security bug. If there is such a way, it should be reported and fixed.
I’m sorry; I misunderstood the original question, but some of the OP’s additional comments have made it clearer. The administrator of the machines in question can automate the setup of a key store with the necessary certificates in it.
See the security information in the Java Deployment Guide. Create a key store that contains the certificate used by the developer to sign the application. This will be the “Trusted Certificates” key store, and its location is specified by the “
deployment.system.security.trusted.certs” property in the deployment properties file (it probably makes most sense to specify this at the system level, rather than the user).The location of the system properties is specified in the
deployment.configfile, and the location can be a URL so that all workstations point to an enterprise-wide configuration.