I have a Java application which is using a certain Java Runtime Environment. The application uses it's own launcher to startup the java virtual machine. No use of the java.exe, javaw.exe, javaws.exe binaries is being made -- as the application seems to have it's own launcher which is a different executable. This custom launcher is using the rest of the JRE files, such as bin/client/jvm.dll and rt.jar package etc.
Now, the problem is that I want to set a boot class path for this custom launcher. The custom launcher does not support the -Xbootclasspath command line parameter, like the default java.exe does.
Is there any way for me to set the boot class path now for this java runtime environment?
Thanks in advance.
Some things to keep in mind:
- I do not have the source of this application
- This is meant for self and personal debugging use only, not for distribution
Update: not getting a lot of replies, so let me rephrase my question. Books like http://my.safaribooksonline.com/0672326388/ch15lev1sec5 tell you to set the -Xbootclasspath, however how does one set such path when the application has it's own JRE launcher directly loading the java libraries without usage of the default java.exe etc. executables?