vote up 1 vote down star

How do I specify in java webstart .jnlp file, that some of my jars are overriding the JRE builtin implementations? Just like the endorsed lib property on a regular application.

flag

64% accept rate
Do you mean the .jnlp file ? – Brian Agnew May 9 at 13:12
Oops, yeah, fixed that. – Vitaly Polonetsky May 9 at 17:42

1 Answer

vote up 0 vote down check

It seems there is no way to define endorsed dirs in web start.

Even defining the java.endorsed.dirs property to some local directory doesn't work. Probably java sets the variables after the runtime is already up.

Two possible solutions to this:

  1. From the web start application, only run command line java with java.endorsed.dirs and all the dependencies (classpath & args) the web start application would do. You have to handle jnlp jars updates each time.

  2. At first run require user or do automatic copy of required jar to JRE/lib/endorsed directory. And then require restart of web start application. Note that this method will put endorsed jars for all java application that will run with the JRE.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.