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 Servlets and explain the advantages of Servlet life cycle?
When a servlet accepts a call from a client, it receives two objects. What are they?
What is difference between the HTTP Servlet and Generic Servlet? Explain about their methods and parameters?
What is the purpose of dispatcherservlet properties?
Explain Action Servlet?
Define the servlet mapping.
When using servlets to build the HTML, you build a DOCTYPE line, why do you do that?
What are the benefits of using servlet over cgi?
What are the different session tracking techniques?
What is preinitialization of a servlet?
What are different Authentication options available in Servlets.
Who is responsible for writing a constructor?