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

Compare with Current View Page History

« Previous Version 14 Next »

Since 2022.01 by default the Windows OS / Linux Gnome proxy settings are used by FEWS. You can add -Djava.net.useSystemProxies=false as jvmOption to the clientConfig.xml to get the 2021.02 or earlier behavior.

If you have proxy settings different from LAN, you can explicitely define these also.
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.

<jvmOption>-Dhttp.proxyHost=[proxyhostURL]</jvmOption>
<jvmOption>-Dhttp.proxyPort=[proxyPortNumber, default 80]</jvmOption>
<jvmOption>-Dhttp.proxyUser=dummy_username</jvmOption>
<jvmOption>-Dhttp.proxyPassword=dummy_password</jvmOption> 

Since java 8, basic authentication is disabled by default. See also: https://www.oracle.com/java/technologies/javase/8u111-relnotes.html. This can be enabled using the following properties:

<jvmOption>-jdk.http.auth.tunneling.disabledSchemes=""</jvmOption>
<jvmOption>-jdk.http.auth.proxying.disabledSchemes=""</jvmOption>

  • No labels