A proxy server that can handle both HTTP and https requests - java

Here I am looking for resources or sample code for a proxy server that can handle both HTTP and https requests written in java. I searched google and found a lot of data on how to handle HTTP requests, but not https.

+3
source share
2 answers

The proxy server cannot handle HTTPS and still provide end-to-end protection. It is not possible to use the SSL / TLS that HTTPS is built on.

And a proxy server that does not provide end-to-end security has limited usefulness. Therefore, I am not surprised that you cannot find an existing implementation.

+2
source

, - HTTPS, -, , HTTPS , - HTTP CONNECT . HTTP-- HTTPS- .

, Jetty ConnectHandler.

+1

All Articles