Skip to main content

🌐 How Java Handles Proxy in Private Networks: Calling Azure Token URL Explained

🌐 Understanding Proxy, Bypass & Calling Azure Token URL from Private Network

1️⃣ What is a Proxy? πŸ€”

A proxy server acts as an intermediary between your computer (or app) and the internet. It forwards your requests and responses to control or monitor network traffic, improve security, or cache content.

  • In private networks (like company intranets), direct internet access might be blocked.
  • All outgoing calls must go through a proxy to access external services (e.g., Azure token endpoint).

2️⃣ Why do we need to configure or bypass Proxy? πŸ›‘

When your app tries to call https://login.microsoftonline.com/{tenant}/oauth2/token, but you are inside a private network, the call may fail if proxy is not configured properly.

Depending on your company's network setup, you might:

  • Configure proxy in your Java app so the call goes through proxy.
  • Bypass proxy for certain URLs if proxy blocks or slows down calls.
  • Set proxy globally in the container or JVM environment (like in your build.gradle or Jib configuration).

3️⃣ How do we configure Proxy in Java apps? πŸ”§

πŸ”Ή JVM System Properties

Java uses system properties to configure proxies for HTTP/HTTPS:

-Dhttp.proxyHost=proxy.company.com
-Dhttp.proxyPort=8080
-Dhttps.proxyHost=proxy.company.com
-Dhttps.proxyPort=8080
-Dhttp.nonProxyHosts="localhost|127.0.0.1|*.company.local"

These are usually set via:

  • Command line when starting the JVM
  • In Docker container environment variables
  • In build.gradle (for Jib builds, setting environment variables)

πŸ”Ή Programmatically Setting Proxy

 System.setProperty("https.proxyHost", "proxy.company.com"); 
 System.setProperty("https.proxyPort", "8080");
 System.setProperty("http.nonProxyHosts", "localhost|127.0.0.1|*.company.local");

4️⃣ How does Java internally handle the proxy call? 🧠

When your Java code calls HttpURLConnection or uses libraries (RestTemplate, WebClient, etc),

  • The JVM checks these proxy system properties.
  • JDK classes involved:
    • java.net.Proxy: represents proxy settings.
    • java.net.InetSocketAddress: proxy host and port.
    • sun.net.www.protocol.http.HttpURLConnection: opens connection via proxy if set.
  • The networking stack routes traffic through the proxy server.

5️⃣ What happens when you call the Azure Token Endpoint? πŸ”„

Sequence flow:

  1. Your Java method calls HttpURLConnection.openConnection() or uses RestTemplate.
  2. The JVM checks if proxy is set (system properties or programmatically).
  3. If proxy is configured, the call is routed via proxy server (proxy.company.com:8080).
  4. Proxy forwards the request to https://login.microsoftonline.com/.
  5. Response from Azure comes back via proxy to your app.

6️⃣ Diagram: Proxy Call Flow Architecture πŸ“Š

Your Java Application
(calls Azure Token URL)
JVM Networking Stack
(HttpURLConnection, java.net.Proxy)
Proxy Server
(proxy.company.com:8080)
Azure OAuth Token Endpoint
login.microsoftonline.com
1️⃣ Call made 2️⃣ Check proxy settings 3️⃣ Forward request 4️⃣ Response sent back

7️⃣ How we configure Proxy in Gradle/Jib build? πŸ› ️

In your build.gradle or Docker build using Jib, you set environment variables so the JVM inside the container uses the proxy:

groovy Copy Edit jib { container { environment = [ "HTTP_PROXY": "http://proxy.company.com:8080", "HTTPS_PROXY": "http://proxy.company.com:8080", "NO_PROXY": "localhost,127.0.0.1,.company.local" ] } }

These environment variables are picked by the JVM or HTTP client libraries at runtime to route traffic accordingly.

8️⃣ Summary πŸ’‘

  • Proxy is a gateway between your app and the internet, often mandatory in private networks.
  • Java uses java.net.Proxy and system properties to configure proxy settings.
  • You can configure proxy globally via JVM args, environment variables, or programmatically.
  • When calling Azure Token URL, your request flows through proxy if configured.
  • Gradle Jib plugin helps you set environment variables inside container builds.
https://docs.oracle.com/javase/8/docs/technotes/guides/net/proxies.html

πŸ˜‚ Developer Humor

Proxy servers are like your office receptionist — making sure every call goes through the right gate, sometimes making you wait but keeping things safe! πŸ˜„

Comments

Popular posts from this blog

🐱 Tomcat vs ⚡ Netty – Which One Should You Use?

🐱 Tomcat vs ⚡ Netty – Which One Should You Use? So recently I got curious about this too πŸ€”. Everywhere in Spring Boot tutorials we see Tomcat . Then suddenly while exploring Spring WebFlux , the name Netty pops up. And I was like – “Wait, who’s this Netty guy trying to replace Tomcat?” πŸ˜… Let’s break it down with real-time examples , icons , and fun comparisons . 🐱 Tomcat – The Traditional Web Server Type: Servlet Container (blocking I/O) World: Used with Spring MVC Style: Thread-per-request model πŸ‘©‍πŸ’» Pros: Stable, widely used, battle-tested Cons: Struggles with huge concurrent connections πŸ‘‰ Example in real life: Tomcat is like a restaurant with fixed waiters 🍴. - Each customer = one thread/waiter - If too many customers come in at once → waiters run out → customers wait outside πŸšͺ ⚡ Netty – The Reactive Rockstar Type: Asynchronous Event-Driven Network Framework World: Default for Spring WebFlux Style: Event-lo...

🎭 Spring’s Secret: Why @Transactional & Friends Betray You Silently

πŸ’‘ Lesson Learned — Not a Prod Bug, But a Real Pain No, this wasn’t a production outage. Nobody screamed at me. But I sat for 3 hours wondering: “Why the heck is my @Transactional not rolling back!?” 😡‍πŸ’« “Why is Redis cache not working?” 🀯 Turned out, the issue was one silent villain: 🧱 Self-invocation 🀷 What Is @Transactional ? If you're new: @Transactional = Tells Spring to start a DB transaction when a method is called. It’ll commit if everything’s okay. It’ll rollback if something fails. 🧠 Think of it like wrapping your code in: try { beginTransaction(); // your logic commit(); } catch(Exception e) { rollback(); } πŸ•΅️ Real-Life Analogy — The Gateway Community 🏘️ Let me tell you about my society — it has a strict watchman at the gate. Here’s how it works: πŸ›‚ Watchman = Spring Proxy 🏠 Your apartment = Your service class πŸšͺ Your room = A method inside that class πŸƒ Scenario 1: Outsider Visits Your friend from outside...

🌟 My Journey – From Zero to Senior Java Tech Lead 🌟

 There’s one thing I truly believe… If I can become a Java developer, then anyone in the world can. πŸ’― Sounds crazy? Let me take you back. πŸ•“ Back in 2015… I had zero coding knowledge . Not just that — I had no interest in coding either. But life has its own plans. In 2016, I got a chance to move to Bangalore and joined a Java course at a training center. That’s where it all started — Every day, every session made me feel like: "Ohhh! Even I can be a developer!" That course didn’t just teach Java — it gave me confidence . πŸ§ͺ Two Life-Changing Incidents 1️⃣ The Interview That Wasn't Planned Halfway through my course, I had to urgently travel to Chennai to donate blood to a family member. After that emotional rollercoaster, I found myself reflecting on my skills and the future. The next day, as I was preparing for my move to Bangalore to complete the remaining four months of my course, I randomly thought — "Let me test my skills... let me just see...