Answer Posted / 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 |
Post New Answer View All Answers
Why is init() method is used in servlets?
What is the difference between sendredirect() and forward() in a servlet?
What is cgi and what are its drawbacks?
Is java servlet still used?
How does tomcat servlet container work?
What are the difference between session and cookies in servlet? Explain
What is a web container and what is its responsibility?
What are the functions of an intercepting filter?
What are the differences between forward() method and sendredirect() methods?
What is Servlet API used for connecting database?
Explain the differences between jsp and servlet.
What do you mean by url pattern in servlet?
What is ServletConfig object?
Should I override the service() method?
What is difference between PrintWriter and ServletOutputStream?