Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for intercepted (1.27 sec)

  1. docs/en/docs/tutorial/cors.md

    ### CORS preflight requests { #cors-preflight-requests }
    
    These are any `OPTIONS` request with `Origin` and `Access-Control-Request-Method` headers.
    
    In this case the middleware will intercept the incoming request and respond with appropriate CORS headers, and either a `200` or `400` response for informational purposes.
    
    ### Simple requests { #simple-requests }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SmbTransportPoolImplTest.java

            // Set fail counts (addr1 has more failures, addr2 has fewer)
            pool.failCounts.put("10.0.0.1", 5);
            pool.failCounts.put("10.0.0.2", 1);
    
            // Create spy to intercept calls
            SmbTransportPoolImpl poolSpy = spy(pool);
            when(ctx.getTransportPool()).thenReturn(poolSpy);
    
            // Mock transports
            SmbTransportImpl trans1 = mock(SmbTransportImpl.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/behind-a-proxy.md

        Note over Server: Server interprets headers<br/>(if --forwarded-allow-ips is set)
    
        Server->>Proxy: HTTP Response<br/>with correct HTTPS URLs
    
        Proxy->>Client: HTTPS Response
    ```
    
    The **proxy** intercepts the original client request and adds the special *forwarded* headers (`X-Forwarded-*`) before passing the request to the **application server**.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 19:34:08 UTC 2025
    - 16K bytes
    - Viewed (0)
Back to top