Answer Posted / sandeep m
Http Protocol is stateless protocol. Hence server cannot
identify the request is from same client or different.
Hence server can treat every request as new request and may
ask for authentication for each request.
Hence for server to remember client and to respond in an
interactive way server needs to remember the client and its
activities. For which javax.servlet.http.HttpSession
interface is provided. Which helps in session tracking of
client requests.
HttpSession is one of the 4 ways of session tracking
mechanisms.
Is This Answer Correct ? | 44 Yes | 3 No |
Post New Answer View All Answers
What do you mean by a filter and how does it work?
Difference between GET and POST?
What is the major difference between context parameter and context attribute?
What is session tracking?
Explain the difference between get and post method in servlet?
Tell us something about servletcontext interface.
If a servlet is not properly initialized, what exception may be thrown?
What are the difference between session and cookies in servlet? Explain
Which exception is thrown if the servlet is not initialized properly?
What is http servlet in java?
How do you define a servlet?
What do you mean by mime type?
What are the exceptions thrown by servlets? Why?
What exactly is a servlet?
Why do we use sendredirect() method?