Explain Servlet Chaining ?

Answers were Sorted based on User's Feedback



Explain Servlet Chaining ?..

Answer / guest

servlet chaining is a technique in which two or more
servlets can cooperate in servicing a single request.
in servlet chaining,one servlet's output is piped to the
next servlet's input.This process continues until the last
servlet is reached.It's output is then sent back to the
client.

Is This Answer Correct ?    18 Yes 0 No

Explain Servlet Chaining ?..

Answer / keshav

servlet chaining is also called as servlet to servlet communication. we apply chaining in following two ways.
1.when we devide one servlet logic into multiple servlets.
2.when we want to include one servlet response into another servlet.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Servlets Interview Questions

What is the difference between ExecuteUpdate and ExecuteQuery?

4 Answers  


Name the servers that can be used to develope and deploy Servlets?

1 Answers  


How is an application exception handling is done using a servlet?

0 Answers  


Explain the custom jsp tags and the beans.

0 Answers  


Explain the architechure of a servlet?

0 Answers  






What are the differences between the servletconfig interface and the servletcontext interface?

0 Answers  


Should I override the service() method?

0 Answers  


How can we achieve transport layer security for our web application?

0 Answers  


How do cookies work in servlets?

0 Answers  


What are the types of ServletEngines?

1 Answers  


What is the difference between Servlet Request and Servlet Context when calling a Request Dispatcher?

0 Answers  


How do u authorize and authenticate without <auth> of web.xml

1 Answers   Bosch,


Categories