• 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
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

how to connect to a site through proxy server(urgent)

 
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Java is case sensitive,
props.put("http.proxyHost","192.168.1.1");
props.put("http.proxyPort","80");
(Notice the capital H and P)
Hope this helps
[This message has been edited by Carl Trusiak (edited January 09, 2001).]
I accidently deleted Dinesh's original post, sorry.
He ask why he was unable to connect throuh a proxy using the code
Properties props=System.getProperties();
props.put("http.proxyhost","192.168.0.1");
props.put("http.proxyport","80");
System.setProperties(props);

[This message has been edited by Carl Trusiak (edited January 09, 2001).]
 
Ranch Hand
Posts: 583
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi! Please enlighten me with what you are trying to do..
Tanx
Regds
Gautham Kasinath
 
gautham kasinath
Ranch Hand
Posts: 583
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!
Well I need help on trying to get an applet through a proxy server to contact my server running on port 9090 outside the proxy.
Regds
Gautham Kasinath
 
It means our mission is in jeapordy! Quick, read this tiny ad!
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic