How to use RequestDispatcher to access another web application servlet
843842Feb 3 2009 — edited Feb 3 2009There are 2 web applications. I am in a servlet in one of the webapp wherein i have written a code to
dispatch the request to the servlet present in other web app(alfresco).
I am doing it as follows..
RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/../../../../../../../alfresco/WEB-INF/classes/org/alfresco/sample/admin/CreatingUser");
dispatcher.forward(request, response);
is this a proper approach...