How do a send an HTTPS request through a proxy in Java?
HTTPS proxy doesn’t make sense because you can’t terminate your HTTP connection at the proxy for security reasons. With your trust policy, it might work if the proxy server has a HTTPS port. Your error is caused by connecting to HTTP proxy port with HTTPS. You can connect through a proxy using SSL tunneling (many … Read more