what is the control flow in servlet when we send a request?
Answer Posted / ravikiran
when we are requesting a particular resource in the
server,the comiled class will be loaded into the container
calls the no-arg constructor and init() then the container
will create request,response objects and pass it to the
corresponding doXXX() method based on the http method of the
form,allocates a thread and do the business logic and send
the response back to the client by sending the thread to a
connection pool and destroying the request and response objects
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Explains the differences between context.getrequestdispatcher() and request.getrequestdispatcher()?
What does the term localization refer to?
What exactly are the functions of servlet?
What is the process for chaining servlet?
What is the functionality of actionservlet and requestprocessor?
What if you need to span your transaction across multiple servlet invocations?
What is the workflow of a servlet?
How do you get the ip address of the client in servlet?
Explain the different ways for servlet authentication?
What are its drawbacks of cgi?
Write a simple servlet program to print the contents of html.
What is context in servlet?
What is new in ServletRequest interface ? (Servlet 2.4)
Why session tracking is needed?
How can we upload the file to the server using servlet?