On Mac OS X 10.9 signed Java Web Start applications are blocked by default with the message:
"application.jnlp" can't be opened because it is from an unidentified developer.
I know it's possible to weaken the security checks to allow any application to run, but that requires a manual intervention of the end user.
Is it possible to "sign" a Java Web Start application such that it is recognized as originating from an identified developer?
Thank you
javaws https://example.com/application.jnlp
. If the jnlp file can no longer be executed automatically upon download there is no point keeping it, even if it's zipped with its code signing attributes. An app bundle has some benefits over the zipped jnlp: 1. it's more familiar to Mac users, 2. it displays the application icon, and 3. there is no need to re-sign it when the jnlp file evolves. – Maxim