Hi There, Looks like you have a configuration issue. You will need to provide proxy details to the VA web applications by using the following options. -Dhttp.proxyHost=localproxyserver.domain << hostname of your proxy server>> -Dhttp.proxyPort=80 <<port number of your proxy server>> -Dhttp.nonProxyHosts="localhost|myVA-mid-servername|myVA-mid-servername.com" <<hostname that does not require proxy server>> You have to add these options to the wrapper.conf file of the SAS web application server hosting VA web applications. In this file you will find bunch of JVM options that are set by wrapper.java.additional.NN. At the end of the wrapper.java.additional.NN you will need to add wrapper.java.additional.NN+1 to set the JVM option, and follow the same steps for each options keeping number incrementing. For example: wrapper.java.additional.46=… wrapper.java.additional.47=-Dhttp.proxyHost=localproxyserver.domain wrapper.java.additional.48=-Dhttp.proxyPort=80 wrapper.java.additional.49=-Dhttp.nonProxyHosts="localhost|myVA-mid-servername|myVA-mid-servername.com" Once you have added above options restart the SAS web application servers. hope that helps.
... View more