Additional JVM Parameters
There are some parameters that do not relate to My webMethods Server but to the JVM itself. You set custom JVM parameters in the custom_wrapper.conf file for My webMethods Server, using the following syntax:
wrapper.java.additional.n=parameter
The number n starts from one and increases by one for each additional element. As a rule, the chain of additional parameters must start at one and be consecutive. For example:
# Java Additional Parameters
wrapper.java.additional.1=-Dosgi.install.area="%OSGI_INSTALL_AREA%"
wrapper.java.additional.2=-Declipse.ignoreApp=true
wrapper.java.additional.3=-Dosgi.noShutdown=true
The following table describes some of the additional parameters, available for customizing JVM settings:
Parameter | Description |
wrapper.java.additional.n=-DproxySet=true | Starts the program without a graphical user interface window. |
wrapper.java.additional.n=-Dhttp.proxyHost=host_name | The host name of the proxy server. |
wrapper.java.additional.n=-Dhttp.proxyPort=port_number | The port number on the proxy server. |
wrapper.java.additional.n=-Dhttp.proxyUser=user_name | A user name used for authentication. |
wrapper.java.additional.n=-Dhttp.proxyPassword=password | A password used for authentication. |
wrapper.java.additional.n=-Dhttp.nonProxyHosts=bypass_hosts | A list of hosts that should be reached directly, bypassing the proxy. Entries are separated by a vertical bar ( | ). |