Servlet Chaining? How do you do the Filtering in Servlets?

Answers were Sorted based on User's Feedback



Servlet Chaining? How do you do the Filtering in Servlets?..

Answer / nirmal yadav

in the sevlet chaining multiple servlets involved in a
processing single request i.e. the output one servlet is
passed as input to the next servlet in the chain ,the output
from the last servlet in the chain is returned to the
browser as response regarding the request

Is This Answer Correct ?    13 Yes 0 No

Servlet Chaining? How do you do the Filtering in Servlets?..

Answer / manasa

More than one servlet involved in processing a request is
known as "servlet-chaining"

Is This Answer Correct ?    14 Yes 3 No

Servlet Chaining? How do you do the Filtering in Servlets?..

Answer / gnani

sevlet chaining is nothing but
multiple servlets involved in a processing single request is
known as servlet chaining

Is This Answer Correct ?    8 Yes 4 No

Servlet Chaining? How do you do the Filtering in Servlets?..

Answer / pinkal

Servlet chaining is a technique in which two or more
servlets can cooperate in servicing a single request.

Is This Answer Correct ?    4 Yes 1 No

Servlet Chaining? How do you do the Filtering in Servlets?..

Answer / k d rana

when request come from browser ,container send request and response object as a parameter to servlet , now when 2 or more servlet use same request object, means we forward existing request and response object to next servlet using
******
requestDispatcher rs=req.getrequestDispatcher("url of next servlet");

rs.forward(req,resp);

*******
method ,and so on ,thus we make chain of servlet to resolve same request using same request object
this is know as servlet chaning..

Is This Answer Correct ?    3 Yes 1 No

Servlet Chaining? How do you do the Filtering in Servlets?..

Answer / kishore m

Filters have the same name with the servlet name .in this
way we have to mention in deployment discripter i.e.web.xml
in application.In this filters are enabled by calling the
servlet.actually filters placed in b/w the client and
server.

Is This Answer Correct ?    5 Yes 4 No

Post New Answer

More Servlets Interview Questions

Given the request path below, which are context path, servlet path and path info?

0 Answers  


How to pass a requrest object of one servlet as a request object to another servlet?

4 Answers   Verizon,


What is Servlet Context?

5 Answers  


Tell us something about servletcontext interface.

0 Answers  


What is a servlet-to-servlet communcation?

0 Answers  






What do you mean by httpservlet?

0 Answers  


What's the advantages using servlets than using cgi?

0 Answers  


What is Servlets and explain the advantages of Servlet life cycle?

0 Answers  


What is the difference between using getSession(true) and getSession(false) methods?

0 Answers  


What is servlet api used for conneting database?

0 Answers  


Explain url encoding?

0 Answers  


How do you run a servlet?

0 Answers  


Categories