Martin van den Bemt wrote: > > Pas the request object to that servlet eg > BlahServlet servlet = new BlahServlet(); > servlet.execute(req, resp);
Why not get a RequestDispatcher and forward (or include) to the other servlet? .. RequestDispatcher rd = request.getRequestDispatcher(pathToServlet); rd.forward(request, response); // or rd.include(request, response) .. Use the setAttribute()-method in the servlet that handles the original request to add the "extra parameters". Then use getAttribute() in the servlet that you forwarded or included to read the "extra parameters". -- Fredrik Westermarck -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
