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 |
How can we upload the file to the server using servlet?
What are different ways for servlet authentication?
How do you define a servlet?
What is the difference between using getSession(true) and getSession(false) methods?
HTTP tunneling means what?
What is the GenericServlet class?
Can a servlet be called by passing its name as a parameter in the URL?
What is the difference between context parameter and context attribute?
Difference between doget and dopost?
Is there any need to shutdown the web server, if you want to modify a servlet?
What is servlet container?
How threads are implemented in servlets?