Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

getting thru a proxy

Status
Not open for further replies.

cwinans

Programmer
Mar 26, 2001
102
0
0
US
I am behind a proxy at work. I found an example to get through it but it doesn't work. It was just a matter of setting a couple properties such as:

Properties props = System.getProperties();
props.put("http.proxyHost", "http-proxy.trans.ge.com");
props.put("http.proxyPort", "80");
System.setProperties(props);

This didn't work. Does anyone have any better examples or can anyone point me to a good article on this subject?

Thanks a bunch!!






I hope this helped! ;-)
- Casey Winans
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top