Session Tracking
Session Login and Logout
We can bind the objects on HttpSession instance and get the objects by using setAttribute and getAttribute methods. In the previous page, we have learnt…
HttpSession
In such case, container creates a session id for each user.The container uses this id to identify the particular user.An object of HttpSession can be…
URL Rewriting
In URL rewriting, we append a token or identifier to the URL of the next Servlet or the next resource. We can send parameter name/value…
Hidden Form Field
In case of Hidden Form Field a hidden (invisible) textfield is used for maintaining the state of an user. In such case, we store the…
Cookies Login and Logout
A cookie is a kind of information that is stored at client side. In the previous page, we learned a lot about cookie e.g. how…
Cookies in Servlet
A cookie is a small piece of information that is persisted between the multiple client requests. A cookie has a name, a single value, and…
Session Tracking Techniques
Session simply means a particular interval of time. Session Tracking is a way to maintain state (data) of an user. It is also known as…