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’s the difference between sendredirect and forward methods
What is Generic Servlet and how it is different from Http Servlet?
Define context initialization parameters.
What is dispatcher servlet?
Can you refresh servlet in client and server-side automatically?
Can we use the constructor, instead of init(), to initialize servlet?
what is meant by Transaction Isolation Levels?
Which is the methods of generated servlet?
What is servlet exception?
6 Answers EDS, Spa IT Solutions,
How can you push data from an Applet to a Servlet?
Why are servlets used?
What are the different methods involved in the process of session management in servlets?