Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Setup proxy configuration for ibm websphere server in console

My WebSphere ESB server runs behind corporate proxy server in our network. When I try to access external web-service i get network exceptions (cannot access destination host).

Is there any way to set my proxy configuration in console, except server startup params? -Dhttp.proxyHost=10.0.0.100 -Dhttp.proxyPort=8800

like image 247
snowindy Avatar asked Nov 11 '11 06:11

snowindy


People also ask

How do I configure proxy settings for Java?

Set the JVM flags http. proxyHost and http. proxyPort when starting your JVM on the command line. This is usually done in a shell script (in Unix) or bat file (in Windows).


1 Answers

No. Since WAS leverage JVM TCP/IP capabilities, the only way is what you found: configure the JVM through the VM Args.

like image 181
dmarrazzo Avatar answered Sep 26 '22 06:09

dmarrazzo