Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the use of RequestDispatcher in servlet?

Answers were Sorted based on User's Feedback



What is the use of RequestDispatcher in servlet?..

Answer / srikanth

While developing complex web applications you need distribute request processing and response to multiple servlets in this case you need dispatch request from one component to another

Is This Answer Correct ?    1 Yes 0 No

What is the use of RequestDispatcher in servlet?..

Answer / mahesh

When we want to use some fields of one servlet page in
another servlet page this RequestDispatcher is very useful
through the methods

1.forward()
2.include()

Is This Answer Correct ?    3 Yes 3 No

What is the use of RequestDispatcher in servlet?..

Answer / ram

to connect another webapplication in a web application

Is This Answer Correct ?    2 Yes 2 No

What is the use of RequestDispatcher in servlet?..

Answer / gani kumar

In creating the web componets we find a requirement to reuse the components in different combinations avoiding the code duplication and have a proper reponsibility divison.
To meet this requirement in servlet envirnoment that is support a servlet acess another web resource like another servlet in the application,java servlet intrduces request dispatcher

Is This Answer Correct ?    0 Yes 0 No

What is the use of RequestDispatcher in servlet?..

Answer / malyadri b

RequestDispatcher
rd=ServletContext.getRequestDispatcher("url of resource");
rd.forward(req,res);----used to forward to another resource.
rd.include(req,res);----used to include other resource.

Is This Answer Correct ?    0 Yes 0 No

What is the use of RequestDispatcher in servlet?..

Answer / suresh g

RequestDispatcher:

RequestDispatcher class is mainly used to 'pass on'
the current request to another program (servlet) and
therefore allows 'chaining' of the programs. A
RequestDispatcher primarily contains two methods
include() and forward(). include() method includes
the response of another program while forward()
method forwards the request of the current program
to another one.

Is This Answer Correct ?    0 Yes 1 No

What is the use of RequestDispatcher in servlet?..

Answer / katamraju

By using Request dispatcher we can include or forward a
request to a another resource by using only one request
and response.

Is This Answer Correct ?    12 Yes 17 No

What is the use of RequestDispatcher in servlet?..

Answer / ravikiran

request dispatcher will forward or include the response to
the output stream

Is This Answer Correct ?    8 Yes 23 No

Post New Answer

More Servlets Interview Questions

How can we upload the file to the server using servlet?

0 Answers  


Can threads be used in Servelet?

3 Answers  


can it possible to validate form field before execution of a servlet service method if yes how??

6 Answers  


Write a command to get actual path of a servlet to the server?

0 Answers  


Once the destroy() method is called by the container, will the servlet be immediately destroyed? What happens to the tasks(threads) that the servlet might be executing at that time?

0 Answers  


What's the advantages using servlets than using cgi?

0 Answers  


Explain the differences between jsp and servlet.

0 Answers  


Hello, My project requirement is like I need to create a web page using MVC pattern. I hava a bean class, jsp page, servlet, service and dao. My jsp has two fields. One is dropdown list. The option values has to get populated from the database table. The other one is a text box and its value has to come from database table. As of now I have defined the fields in bean class, got the values from database using arraylists in dao class and I called this from service class. Can anyone please tell me the workflow of how the servlet will get this arraylist and populate the arraylist values as dropdown options in jsp page? Also I would like to know the role of bean class in MVC pattern? Thanks in advance!

0 Answers  


Explain servlet.

0 Answers  


Can you explain in detail 'javax.servlet' package?

0 Answers  


What do you mean by chaining in servlet?

0 Answers  


What is the procedure of invoking different servlet in a different application?

0 Answers  


Categories