Add Proxy Settings to Catalina.sh of Siebel SES Container

This topic is needed if you have proxy server to access outside URLs for Siebel server .

To add Proxy settings to Catalina.sh

Configure the following:

JAVA_OPTS="$JAVA_OPTS -Dhttp.proxyHost=your-proxy.com -Dhttp.proxyPort=80 -Dhttps.proxyHost= your-proxy.com -Dhttps.proxyPort=80"
JAVA_OPTS=$JAVA_OPTS -Dhttp.proxyUser=user -Dhttps.proxyUser=user
JAVA_OPTS=$JAVA_OPTS -Dhttp.proxyPassword=password -Dhttps.proxyPassword=password

Example:

JAVA_OPTS="$JAVA_OPTS -Dhttp.proxyHost=www-proxy.us.xxx.com -Dhttp.proxyPort=80 -Dhttps.proxyHost=www-proxy.us.xxx.com -Dhttps.proxyPort=80"