Edit your server.bat file. The server.bat file’s sole purpose is to write the runserver.bat file. Look at your existing runserver.bat file and you will see the command line that started your most recent instance of Integration Server. Because runserver.bat is generated on-the-fly by server.bat, you should put any JVM properties in server.bat.
If you need assistance manipulating server.bat, let me know.
Use system.setProperty(“YourProperty”,“YourValue”) and then access this variable using String s = System.getProperty(“YourProperty”) within your service. I will typically use a startup service to load properties from file or a database and then and set these system variables when a package loads.