Consider there are two servlets, Servlet1 under WebApp1 and Servlet2 under WebApp2 deployed in two different JVMs.
I need to forward the request from Servlet1 to Servlet2, How to implement this in code?
Note: I need the request and response objects - So response.redirect() doesnt solve my problem.