I have two servlets deployed in different war files but on the same container.I want to forward the control from first servlet to second servlet.I have got only two ways to do this,that are :
response.sendRedirect("complete url of second servlet") response.sendRedirect("/contextrootofsecondservlet/urlofsecondservlet")
Earlier i thought,it can be done through RequestDispatcher also but it is not happening through RequestDispatcher. Can anyone tell me apart from these 2 ways,how can i make those 2 servlets to talk with each other. Thanks.
For security reasons, some containers shut this capability off by default. With Tomcat, for instance, you need to set the crossContext attribute to true in your <Context ../> entry.