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
What's the difference between authentication and authorization?
What is called servlet mapping?
Write the code to get the server information in servlet.
Elucidate servlet attributes and its scope?
What are the two important api's in for servlets?
What's the advantages using servlets than using cgi?
Which method of the httpservletrequest object is used?
What is difference between cookies and httpsession?
How will two or three servlets interact or communicate with each other?
Can we refresh servlet in client and server side automatically?
How can we achieve transport layer security for our web application?
Describe some assignments that are executed by servlet container?
How to get the server information in a servlet?
Why do we have servlet listeners?
What is the difference between forward () and sendredirect () functions in servlet? Explain