How session tracking can be achieved, if your browser
doesn't support cookies (or) if cookies are disabled?
Answers were Sorted based on User's Feedback
Answer / rambabu gonela
URL rewriting is another way of exchanging session ID (as
part of URL) when clients does not accept cookies (cookies
disabled on browser).
When cookies are disabled on client, client just ignores
the session information on all response headers. The
session?s isNew() method will always return true (Container
keep creating new sessions for each request, unless URL
rewriting used).
If all URLs on webpage is explicitly written with
reponse.encodeURL(String url) method, URL rewriting will
happen automatically if cookies don?t work with the client
(encodeURL method will add session information only when
URLrewriting is turned on i.e, session management depends
on URL parameter).
| Is This Answer Correct ? | 6 Yes | 1 No |
What do you mean by web applications?
How can an existing session be invalidated?
Why do we have servlet wrapper classes?
What is cookies in servlet with example?
What are cookies and how will you use them?
What is the difference between callling a RequestDispatcher using ServletRequest and ServletContext?
can i call destroy() method in init() method of servlet
How can we refresh automatically when new data has entered the database?
How to invoke a Servlet?
Why is servlet used?
Explain the difference between servlet and cgi?
What exactly is a servlet?