up vote 2 down vote favorite
share [g+] share [fb]

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.

link|improve this question

Do you mean the .jnlp file ? – Brian Agnew May 9 '09 at 13:12
Oops, yeah, fixed that. – Vitaly Polonetsky May 9 '09 at 17:42
There might be a different way of doing a .jnlp implementation by using YAJSW. I would recommend looking into it. – djangofan Feb 18 '11 at 18:11
feedback

1 Answer

up vote 1 down vote accepted

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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