Explain Servlet Chaining ?
Answers were Sorted based on User's Feedback
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 |
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 |
What are the uses of servlet
Can we refresh servlet in client and server side automatically?
What is the use of java servlet api?
How httpservlet is different from the genericservlet?
What are the advantages of Servlet over CGI?
What are the methods in HttpSession and their use?
What is the use of send redirect () method?
What are the different methods involved in the process of session management in servlets?
can it possible to validate form field before execution of a servlet service method if yes how??
How are filters?
Write a program to show the functionality of servlets.
Explain the difference between jsp and servlet?