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 is the difference between do get/dopost
Explain Servlet Chaining ?
What is the default http method in the servlet?
Why doesn’t a servlet include main()?
What is cookies in servlet with example?
How do we translate jsp?
java.lang.IllegalArgumentException: The path of an ForwardConfig cannot be null while working with struts it displayed pls very ungent
can we use more than one controller in web application
How to deal with multi-valued parameters in a servlet?
Explain the difference between get and post method in servlet?
Why don't we write a constructor in a servlet?
What is a servlet context object?