HTTP Proxy setting in Java. Setting up proxy.

Working 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
Code language: Java (java)

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");
Code language: Java (java)
Hope this works. :)

View Comments

  • # 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?

  • 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.

  • 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.

  • We have created a war file and deployed in tomcat server.We are able to access using the urls,http://localhost:8080/test and http://:8080/test.This is accessible only in the particular LAN.how do I make it available outside LAN?Is there any possibility to update proxy settings in the host machine to accept the request from client?Any help is appreciated.....

  • hi.. I have started tomcat with the -Dhttp.proxyHost=proxyhostURL and -Dhttp.proxyPort=proxyPortNumber parameters and it all works fine.

    But, the problem is when it comes to a https call, it does not work. I can see a connection timeout exception in the logs. I'm able to connect to URL via my browser and I have set the same proxy server and port while starting tomcat.

    Plz, can someone help..

    thanks

    • Hello Ash,
      Did you ever figure this out? I have this problem now. Http works, but Https don't.

      Thanks!
      /Henry

Share
Published by
Viral Patel
Tags: Application Server HTTP Proxy HTTP Proxy Authentication for Java Java Java Application Proxy Settings Java Proxy Settings Servlets tomcat

Recent Posts

  • Java

Java URL Encoder/Decoder Example

Java URL Encoder/Decoder Example - In this tutorial we will see how to URL encode/decode…

4 years ago
  • General

How to Show Multiple Examples in OpenAPI Spec

Show Multiple Examples in OpenAPI - OpenAPI (aka Swagger) Specifications has become a defecto standard…

4 years ago
  • General

How to Run Local WordPress using Docker

Local WordPress using Docker - Running a local WordPress development environment is crucial for testing…

4 years ago
  • Java

Create and Validate JWT Token in Java using JJWT

1. JWT Token Overview JSON Web Token (JWT) is an open standard defines a compact…

4 years ago
  • Spring Boot

Spring Boot GraphQL Subscription Realtime API

GraphQL Subscription provides a great way of building real-time API. In this tutorial we will…

4 years ago
  • Spring Boot

Spring Boot DynamoDB Integration Test using Testcontainers

1. Overview Spring Boot Webflux DynamoDB Integration tests - In this tutorial we will see…

4 years ago