Hi,
I think using RequestDespatcher to forward the request to another
servlet is another form of servlet chaining.I welcome your
views on this .
Thanks
Bye
Rama.
-
Using RequestDespatcher (2 messages)
- Posted by: Ramasubramanian Balasubramanian
- Posted on: April 11 2001 06:15 EDT
Threaded Messages (2)
- Using RequestDespatcher by Sankara Subramanian Palanisamy on April 11 2001 06:38 EDT
- Using RequestDespatcher by Tony Brookes on April 13 2001 15:17 EDT
-
Using RequestDespatcher[ Go to top ]
- Posted by: Sankara Subramanian Palanisamy
- Posted on: April 11 2001 06:38 EDT
- in response to Ramasubramanian Balasubramanian
I don't think it is a type of servlet chaining.In case of chaining output of one servlet should be the input of the other one,which is not happening in request dispatcher.
sankar. -
Using RequestDespatcher[ Go to top ]
- Posted by: Tony Brookes
- Posted on: April 13 2001 15:17 EDT
- in response to Ramasubramanian Balasubramanian
Servlet chaining was a proprietary part of JWS. Avoid it. It isn't supported by the servlet API, it was added by JWS during the servlet APIs formative years! :-)
RequestDispatcher is the vendor neutral way to do what you want.
Chz
Tony