what is session tracking?what are types of session
tracking ?and when to cookies,when to use
sessionmanagement,whent use url rewriting technique,plz
explain briefly?
Answer Posted / makthar basha
HTTP is a "state less" protocol and it does not maintain the
client state, But there exist a mechanism called "Session
Tracking" which helps the servers to maintain the state to
track the series of requests from the same user across some
period of time.
Note:HTTP is a stateless protocol that means client(browser)
sends the request to the server and server sends the
response to the client, once the response is returned to
client, server does not remember anything about the client
state.
Is This Answer Correct ? | 24 Yes | 2 No |
Post New Answer View All Answers
How to handle exceptions thrown by application with another servlet?
Why is http protocol called as a stateless protocol?
Explain how does JSP handle run-time exceptions?
What do you mean by servlet?
What is a web container and what is its responsibility?
What is the difference between context parameter and context attribute?
How do cookies work in servlets?
how the HTML data stored in web server?
What is setattribute in servlet?
When to use doget() and when dopost()?
What’s the difference between forward() and sendredirect() methods?
Explain the architechure of a servlet?
Explain how to improve Servlet Performance?
Why jsp is better than servlet?
What are the different methods involved in the process of session management in servlets?