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
When using servlets to build the HTML, you build a DOCTYPE line, why do you do that?
How do cookies work in servlets?
What is the use of send redirect () method?
What is the servletconfig object?
What is MIME Type?
How do you deal property files in servlet?
What is the web server used for running the Servlets?
How to notify an object in session when session is invalidated or timed-out?
Write a command to get actual path of a servlet to the server?
Explain the difference between a web server and a web container?
How the typical servlet code look like ?
Why jsp is better than servlet?
How can a servlet be used to generate plain text instead of html?
What is the difference between get and post methods?
Explain Action Servlet?