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 / sachin
Session tracking is a mechanism that servlets use to
maintain state about a series of requests from the same
user (that is, requests originating from the same browser)
across some period of time.
Cookies are a mechanism that a servlet uses to have clients
hold a small amount of state-information associated with
the user. Servlets can use the information in a cookie as
the user enters a site (as a low-security user sign-on, for
example), as the user navigates around a site (as a
repository of user preferences for example), or both.
| Is This Answer Correct ? | 45 Yes | 16 No |
Post New Answer View All Answers
What's the difference between authentication and authorization?
What is url encoding and url decoding
When Servlet is unloaded?
Why filter is used in servlet?
What are the functions of an intercepting filter?
What is the use of welcome-file-list?
What is meant by cookies?
What is servlet and its types?
Can you create a deadlock condition on a servlet?
Why is it that we can't give relative URL's when using ServletContext.getRequestDispatcher() when we can use the same while calling ServletRequest.getRequestDispatcher()?
What is string tokenizer?
What is the need of session tracking in web application?
What is java servlet?
What is the purpose of requestdispatcher interface?
What is the difference between servlet and filter?