HTTP Proxy
You are looking at an older version of the documentation. The latest version is found here.
The Data Virtuality Server is deployed within an environment that uses an HTTP proxy server, and the Data Virtuality Server needs to be configured to use this proxy.
Configuration
You can set the configuration via the dvserver-standalone.xml file of the JBoss server instance, located in the %dvserver_installpath%/standalone/configuration folder. Here are the steps:
1. Stop the Data Virtuality Server.
2. Find the </extensions> end tag and the properties <property name="com.arjuna.ats.arjuna.allowMultipleLastResources" value="true"/>
, <property name="com.ibm.as400.access.AS400.guiAvailable" value="false"/>
and add proxy-related properties after these two, as shown below:
.<system-properties>
<property name="com.arjuna.ats.arjuna.allowMultipleLastResources" value="true"/>
<property name="com.ibm.as400.access.AS400.guiAvailable" value="false"/>
<property name="http.proxyHost" value="ProxyIP"/>
<property name="http.proxyPort" value="ProxyPort"/>
<property name="https.proxyHost" value="HttpsProxyIP"/>
<property name="https.proxyPort" value="HttpsProxyPort"/>
<property name="http.nonProxyHosts" value="ListOfHostsThatAreDirectlyContacted"/>
</system-properties>
Please note that the value for http.nonProxyHosts
can contain a |-separated list of multiple hosts that are communicated with directly. For example, value="localhost|clr.mycomp.org|*.mycomp.local"
, where '*
' denotes the wildcard.
3. Start the Data Virtuality Server.