Java Web Start v1.0 and v1.0.1 don't work with Merlin at all because of this
problem. Java Web Start will not start up and hangs during startup. This appears to be because when a checkPermission is made where the call trace originated from a class in javaws.jar, javaws.jar is not given the correct set of permissions. So as a result Java Web Start appears to have very few permissions which aren't sufficient for it to start. It hangs attempting to read some startup .cfg file.
We specify in our javaws.policy file:
grant codeBase "file:{jnlpx.home}/javaws.jar" {
permission java.security.AllPermission;
};
and invoke Java Web Start with 'java -Djava.security.policy=javaws.policy'.
This works in Java 2 v1.2.2 and v1.3, but not in Merlin.
More in comments....
problem. Java Web Start will not start up and hangs during startup. This appears to be because when a checkPermission is made where the call trace originated from a class in javaws.jar, javaws.jar is not given the correct set of permissions. So as a result Java Web Start appears to have very few permissions which aren't sufficient for it to start. It hangs attempting to read some startup .cfg file.
We specify in our javaws.policy file:
grant codeBase "file:{jnlpx.home}/javaws.jar" {
permission java.security.AllPermission;
};
and invoke Java Web Start with 'java -Djava.security.policy=javaws.policy'.
This works in Java 2 v1.2.2 and v1.3, but not in Merlin.
More in comments....
- duplicates
-
JDK-4410959 JWS can't launch application (B49)
-
- Closed
-
- relates to
-
JDK-4244271 New policy sometimes has no effect with no indication given
-
- Resolved
-