5

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

snowindy
  • 3,117
  • 9
  • 40
  • 54
  • I'd already be grateful if I'd find the proper place where I could place the startup params - there are a myriad of different batch files that have no common environment variable which could be used for that... – Thomas Keller Dec 08 '11 at 12:35
  • See if this helps Window->Preferences->General->Network Connections Give your proxy configuration there and let me know the error if any – arvind_cool May 01 '12 at 03:34
  • Did you ever figure out how to do this? – rabs May 22 '13 at 07:26
  • @rabs Not really. I ended up with startup params... – snowindy May 22 '13 at 10:47

2 Answers2

4

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

dmarrazzo
  • 175
  • 7
1

Edit: Those particular options can be set as Additional Properties to 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, options to the JVM are set in Application servers > server_name > Process definition > Java Virtual Machine.

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

peater
  • 1,233
  • 15
  • 20