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 / raghunath bj
Session tracking is a techinque where we can track the
number of attempts made by the web browser and as per my
knowledge there are 3 kinds of session tracking mechanisms
mentioned
1.HttpCookies:we can use HttpCookie to store temporary
information.
2.URL Rewriting:By Using this we can add or append more
information to the session.
3.Hidden form fields:which means we can have hidden field
inside the form and this can be used to store information
about the session.
But one disadvantage with this HiddenFormField is it works
if every page is dynamically generated.
| Is This Answer Correct ? | 40 Yes | 10 No |
Post New Answer View All Answers
Why is init() method is used in servlets?
How can we invoke another servlet in a different application?
What do you mean by servlet context?
How to get the path of servlet in the server?
What is MIME Type?
Can we get PrintWriter and ServletOutputStream both in a servlet?
Write a hello world program using servlets.
How will you pass values from HTML page to the servlet?
What is new in ServletRequest interface ? (Servlet 2.4)
What do you mean by filter in servlet?
How the typical servlet code look like ?
Which interface should be implemented by all servlets?
What are the exceptions thrown by servlets? Why?
What is webservlet?
What do you mean by httpservlet?