Which is better approach among four(HttpSession,cookie,URL
Rewriting, Hidden Fields) Session Tracking technic's ? Why ?
Answer Posted / sridhar
Best Approaches are HttpSession and URL Rewriting.....
in HttpSession when client sends the request to the server first time session object will be created.
HttpSession ses=Request.getSession(true);//if session is not created a new session will be created and JsessionId is sent to the client.if session is already created existed Jsession Id send to the client.
HttpSession ses=Request.getSession(false);//if session is already created the Jsessionid will send to the client
if not it will not create Session object.
If browser doesn't support cookies the appln will not work properly.
So to avoid this problem We can use UrlRewriting........
| Is This Answer Correct ? | 17 Yes | 3 No |
Post New Answer View All Answers
What is the difference between CGI and Servlet?
what is servlet chaining?
What are the steps that are involved in using the httpservlet class?
How do we call one servlet from another servlet?
Differentiate between the web server and application server?
What is Client-Server Computing?
Are Servlets Thread Safe? How to achieve thread safety in servlets?
What is the major difference between servlet and applet?
Difference between java beans & servlets?
How do I use cookies to store session state on the client?
What is setattribute in servlet?
List out the difference between ServletConfig and ServletContext?
How can we upload the file to the server using servlet?
What is the difference between servlet and jsp?
Explain the difference between jsp and servlet?