Is there a way to suppress a password prompt when using Java Webstart with an https server that uses client authentication? I would like to do this because the web application runs on a touch screen that does not have a keyboard and works in kiosk mode. Therefore, it would be enough to either remove the password from the keystore, or save it somewhere, maybe on the desktop that launches the application.
I already tried to connect the JVM parameter to a shortcut like this, but it does not work:
javaws -J-Djavax.net.ssl.keyStorePassword=mypass https:
I also found that when I activate the "use keystore browser" -option in the Java control panel and add a certificate to it, I can cancel the password prompt and still successfully connect. It seems that only Java-Keystore asks for a password, and Internet-Explorer does not.
source share