What is requestdespatcher?

Showing Answers 1 - 4 of 4 Answers

Srikanth

  • Oct 16th, 2005
 

It is a method that gives object to which next request ,response objects need to be handled to serve the left over work.

  Was this answer useful?  Yes

Shiv Shankar

  • Nov 24th, 2005
 

RequestDiapatcher is a interface comes from javax.servlet package.It has two methods include(request,response)forwared(request,response)it is used to transfer the request and the response object to the other layes life (jsps & servlets )server side .Advantage :- when ever u used request despatcher it mean transfering from one layer to another is done by your server not by the client i.e browser.

debabrata sau

  • Feb 13th, 2006
 

RequestDispatcher is a class having forward(req,res) & include(req,res) methods

  Was this answer useful?  Yes

DHARMENDRA

  • Apr 1st, 2006
 

RequestDispatcher is not a class it is an Interface having forward(ServletRequest,ServletResonse) and include(ServletRequest,ServletResonse) methods.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions