Currently we have to prompt the user to find their .p12/jks cert file on disk using a file dialog box. They already have to add their cert to Chrome or FireFox so I was hoping to pull that information from there limiting the amount of steps they need to connect.
I noticed when launching the JNLP for the jar that it kind of already does this.
So is it possible to have a similar window popup that I can then use to populate the system properties or is there a way to pass that information from the JNLP to the JAR. Ideally this is OS agnostic.
System.setProperty(SSLEnvironmentBootstrap.SSL_KEYSTORE_KEY_NAME, keystore);
System.setProperty(SSLEnvironmentBootstrap.SSL_KEYSTORE_PASSWORD_KEY_NAME, keystorePassword);
Any and all suggestions or comments are appreciated it!