Dear all,

The question may be not a TC specific one.

I am using RequestDispatcher to forward a request object from Servlet1 to
Servlet2 as followings.

protected void doPost(HttpServletRequest request, HttpServletResponse
response) throws ServletException, IOException {

...
   RequestDispatcher rd = context.getRequestDispatcher("/Servlet2");
   rd.forward(request, response);
...

}

Is it possible to add or modify the parameters of the request object?

Thanks,
steve



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to