forward from one application to other application
December 13th, 2007No Comments
The number of ways in which we can forward from one application to another application running on different containers.I think these 2 can work :
1.ServletContext.getRequestDispatcher.forward(“URL of the 2nd application”)
2.response.sendRedirect(“URL”)

