In order to make an application compatible with our SSO implementation I need to handle an HTTP request (which adds some HTTP headers) and then "forward" that request to another web server (3rd party web server).
[Browser]-->[MyProxyApp on Tomcat]-->[Another Webserver]
Is Tomcat able to "forward" (reverse-proxy) requests to another server?
Simplest way I can think of is a servlet that implements an HTTPClient, but I was hoping for a simpler solution.
"Noodle" seems to do the job, but given it's age, I'm not sure it's 100% compatible with the current web standards (websockets, longpolling and such things)