|
From: Cocalea, E. <Co...@sy...> - 2004-05-21 11:51:40
|
Hello, This is a bit tricky, because not even me know what the question is about. I have a java application that I want to run as a windows service and I use wrapper to do this. My app wrapper.conf used to have wrapper.java.command=%JAVA_HOME%/bin/java The problem is that I have to run different versions of the application, that are certified against different JREs. So, my question is: if I hardcode the path to the JRE I need in wrapper.java.command, do I need to check anything else to see if the application really uses that JRE? Example: - JAVA_HOME points to JRE 1.3 - I need to run the app with JRE 1.4 - wrapper.java.command is <JRE1.4_install_path>/bin/java I should be safe, correct? Assuming my application doesn't use JAVA_HOME. |