HTTP Proxy setting in Java. Setting up proxy.

      

java-cup-logoWorking behind a proxy and writing network related code has always been boring for me. Just because everytime I had to connect to Internet and get some data, I had to use Proxy settings. Whatever I used had a proxy configuration.

HTTP Proxy are configured mostly in corporate environments to manage internet usage. Hence if you are writing a code in Java to connect to internet and get something as we were doing in our Web crawler in Java article, we have to use HTTP proxy settings to get connected to internet.

When do you need to consider proxy settings for connecting to internet?

  1. Your Java client runs on a machine on the Local network – Private LAN. The client could be a standalone application, or a servlet hosted on a web container like Tomcat
  2. Your code access an external resource using HTTP. For example, invoking an external Web Service.
  3. Your HTTP call needs to tunnel through the HTTP proxy (using SOCKS authentication). Even if authentication is not required, you would still need to configure the URL and the Port of your HTTP proxy.

Sometime, you may encounter a compiled (Java) code that connects to network directly without considering http proxy settings. In such case you may not be able to run it behind your proxy environment. You can execute the code by setting few command line arguments to JVM.

Settings for HTTP Proxy

Use one of the methods below for your JVM proxy settings. Try an alternate method if any particular method does not work. In most cases, you should not require any change the pre-compiled Java code for proxy settings. JVM’s environment settings should be enough to fix this problem.

Command Line JVM Settings

The proxy settings are given to the JVM via command line arguments:

$> java -Dhttp.proxyHost=proxyhostURL
-Dhttp.proxyPort=proxyPortNumber
-Dhttp.proxyUser=someUserName
-Dhttp.proxyPassword=somePassword HelloWorldClass

Setting System Properties in Code

Add the following lines in your Java code so that JVM uses the proxy to make HTTP calls. This would, of course, require you to recompile your Java source. (The other methods do not require any recompilation):

System.getProperties().put("http.proxyHost", "someProxyURL");
System.getProperties().put("http.proxyPort", "someProxyPort");
System.getProperties().put("http.proxyUser", "someUserName");
System.getProperties().put("http.proxyPassword", "somePassword");

Hope this works. :)


Facebook  Twitter      Stumbleupon  Delicious
  

5 Comments on “HTTP Proxy setting in Java. Setting up proxy.”

  • EJP wrote on 15 May, 2009, 11:05

    # System.getProperties().put(\"http.proxyUser\", \"someUserName\");
    # System.getProperties().put(\"http.proxyPassword\", \"somePassword\");

    These properties do not exist in the JDK. Are you thinking of some 3rd-party package?

  • MJ wrote on 19 June, 2009, 21:55

    Just noticed that myself…

  • Alan Kennedy wrote on 4 July, 2009, 16:42

    Hi,

    You may be interested in this database of open source HTTP proxies written in Java.

    http://proxies.xhaus.com/java/

    There’s also a list of open source HTTP proxies written in python.

    http://proxies.xhaus.com/python

    Regards,

    Alan.

  • Madhukar wrote on 10 August, 2009, 4:16

    If we are working from home, we may not need the proxy but yes if we are at work, most of us would definitely need to configure the proxy for anything to do with an url.

  • suganya murugesan wrote on 7 February, 2010, 15:04

    Hi,

    props.setProperty(“http.proxyHost”, “proxy.ssn.net”);
    props.setProperty(“http.proxyPort”, “8080″);
    props.setProperty( “mail.imap.socketFactory.class”, SSL_FACTORY);
    props.setProperty( “mail.imap.socketFactory.fallback”, “false”);
    props.setProperty( “mail.imap.port”, “993″);
    props.setProperty( “mail.imap.socketFactory.port”, “993″);
    props.put(“mail.imap.host”, “imap.gmail.com”);
    Session session =
    Session.getDefaultInstance(props, null);
    store = session.getStore(“imap”);
    store.connect(dialog.getServer(),dialog.getUsername(),dialog.getPassword());

    I could connect to gmail server without proxy setting. but when i set the proxy setting in college i couldn’t connect.

Write a Comment

Gravatars are small images that can show your personality. You can get your gravatar for free today!

Copyright © 2010 ViralPatel.net. All rights reserved.