You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

There are a few ways to define the proxy settings that should be used by the application, whether OC or FSS. By default does JAVA not use the LAN system proxy settings

The easiest way is to define the JAVA system property java.net.useSystemProxies in the .JPIF. By default does JAVA not use the LAN system proxy settings for JAVA backwards compatibility reason. You should define this property to true to use the default LAN settings.

Before 2014.02 using jpif file

..\jre
-Xmx1024m
-Djava.net.useSystemProxies=true
-cp
....

Since 2014.02, in the ini file

vmarg.2=-Djava.net.useSystemProxies=true

If you have proxy settings different from LAN, you can explicitely define them in the .JPIF
All below listed settings are optional and only required, if it differs from the default setting. For example, it is possible to define only the proxyHost.

Before 2014.02 in the jpif file:

..\jre
-Xmx1024m
-Dhttp.proxyHost=[proxyhostURL]
-Dhttp.proxyPort=[proxyPortNumber, default 80]
-Dhttp.proxyUser=[someUserName]
-Dhttp.proxyPassword=[somePassword]
-cp
....

Since 2014.02 in the ini file:

vmarg.2=-Dhttp.proxyHost=[proxyhostURL]
vmarg.3=-Dhttp.proxyPort=[proxyPortNumber, default 80]
vmarg.4=-Dhttp.proxyUser=[someUserName]
vmarg.5=-Dhttp.proxyPassword=[somePassword]

See for all details on the JAVA options this link

  • No labels