RequestDispatcher for remote server?

Viewed 21965

I am trying to create a HttpServlet that forwards all incoming requests as is, to another serlvet running on a different domain.

How can this be accomplished? The RequestDispatcher's forward() only operates on the same server.

Edit: I can't introduce any dependencies.

3 Answers
Related