Configuring a proxy server for the ibm websphere server in the console

My WebSphere ESB server is behind a corporate proxy on our network. When I try to access an external web service, I get network exceptions (I cannot access the target host).

Is it possible to set the proxy server configuration in the console, besides the server startup parameters? -Dhttp.proxyHost = 10.0.0.100 -Dhttp.proxyPort = 8800

+4
source share
2 answers

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

+2
source

Edit: these specific parameters can be set as additional properties for the JVM

See http://www-01.ibm.com/support/knowledgecenter/SSAW57_8.5.5/com.ibm.websphere.nd.doc/ae/twbs_configwbsclient2webproxy.html

In WAS, JVM parameters are set in application servers> server_name> Process definition> Java virtual machine.

See http://www-01.ibm.com/support/docview.wss?uid=swg21417365

+1
source

Source: https://habr.com/ru/post/1380712/


All Articles