Page 1 of 1

java3d

Posted: 02 Aug 2020, 13:08
by douglaslyon
The following works:
http://docjava.com/book/cgij/code/jnlp/dhry.Main.jnlp
for the purpose of testing.
More complex programs may not work at all. Here is a video
documenting the issue;
https://vimeo.com/443968686
It is not clear to me what is broken here...
Thanks!
- Doug

Re: java3d

Posted: 03 Aug 2020, 23:28
by Hendrik Ebbers
It looks like you start the application with Oracle WebStart and not with OpenWebStart.

Re: java3d

Posted: 29 Jun 2021, 18:11
by douglaslyon
Hi All,
Here is a follow up;
https://vimeo.com/568975294
shows we can get things working with Java webstart, but not open webstart.
Thanks!
- Doug

Re: java3d

Posted: 30 Jun 2021, 11:25
by nagelfar
You are misinterpreting the isssue. What is happening is that your non working JNLP adds --add-exports arguments. Those are specific to java 9 and up so you can't use them with jdk versions <9. Check dhry.Main.jnlp it doesn't add those arguments.

Also you state you want to use jdk 8 but in the jnlp it is specified as 1.8+ so depending on your setup it may run with any java version >=8 installed on your machine.