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 |
how the jsp page can be regenerated?
What is the difference between forward () and sendredirect () functions in servlet? Explain
What is cookie in servlet?
Explain servlet.
What do you mean by cgi and what are its drawbacks?
Why setMaxAge() and getMaxAge() methods are used in Cookies?
Why is servlet used?
How the typical servlet code look like ?
Why session tracking is needed?
What's the use of servletcontext?
Is servlet synchronized?
How to deal with multi-valued parameters in a servlet?