in the jnlp file, specify:
<j2se initial-heap-size="2048m" max-heap-size="2048m" version="1.4+" href="http://java.sun.com/products/autodl/j2se"/>
if you run on a old machine with limited memory space, javawebstart will exit silently during relaunch because the jvm cannot be started:
capoon [bin]% java -Xms2036870912 -Xmx2036870912
Error occurred during initialization of VM
Could not reserve enough space for object heap
Our java code for the relaunch did not check for error messages, and will just exit silently.
<j2se initial-heap-size="2048m" max-heap-size="2048m" version="1.4+" href="http://java.sun.com/products/autodl/j2se"/>
if you run on a old machine with limited memory space, javawebstart will exit silently during relaunch because the jvm cannot be started:
capoon [bin]% java -Xms2036870912 -Xmx2036870912
Error occurred during initialization of VM
Could not reserve enough space for object heap
Our java code for the relaunch did not check for error messages, and will just exit silently.
- duplicates
-
JDK-5021056 JCP: Some Error message should be thrown if running out of space
-
- Closed
-