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 doGet() and doPost()?
How can you run a servlet program?
Name the webserver that is used to run Servlets?
What is SingleThreadModel interface?
How do you track a user session in servlets?
How to set a cookie that is persisted only for the duration fo the clients session?
What is the difference between an applet and a servlet?
15 Answers GCEW, Miracle Solutions,
What is a servlet engine?
What is meant by a servlet?
what is the difference between?when we write the code in following manner? class One extends httpservlet { } and class One extends genericservlet { }
What are the different mode that servlets can be used?
Explain the concept of ssi ?