• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

Trying to set JBuilder proxyHost for wsdl lookup

 
Ranch Hand
Posts: 327
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm trying to import a web service through JBuilder but when I type in a url to the wsdl file I get a no "route to host" dialog box. I know this is because my computer goes through a proxy server but I can't figure out how to get JBuilder to use this to connect to the internet. I would very much appreciate help on this subject. Thanks.
 
Anthony Watson
Ranch Hand
Posts: 327
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
After much looking, I found the answer:
To access internet sites from the Help Viewer through a proxy server, you must specify the host ID and port number for your proxy server. These values are set within the Help Viewer.
To enable the Help Viewer to use a proxy server to connect to the internet,
Open the Help Viewer (Help|Help Topics).

Choose Options|More to open the Help System Options dialog box.

Check the Connect to the Internet Via Proxy Server option.

In the Host field, enter the name or numeric IP address of the proxy server.

In the Port field, enter the proxy server's port number.

Click OK.

Restart JBuilder for the change to take effect.
 
Sheriff
Posts: 6450
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can also add an environment variable to your system for this to work:
_JAVA_OPTIONS -Dhttp.proxyHost=xxx.xx.xxx.xx -Dhttp.proxyPort=xxxx
 
There are 29 Knuts in one Sickle, and 17 Sickles make up a Galleon. 42 tiny ads in a knut:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic