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
How to commuincate between an applet and a servlet?
What is the use of httpservletrequestwrapper?
What is api in servlet?
What is URL Encoding?
What is the difference between the http servlet and generic servlet?
Tell the new features added in servletrequest interface i.e. Servlet 2.4
I have a requirement Here we have a ResultSet object that will contain 50 records i need to print those recors in to a webpage(i.e; view according to MVC architectures that mybe servlet or jsp) . Here i need to print the records 10 per page that is 1 to 10 in page one and 11 to 20 in page two like remaining will be appeared in other pages we need to display those page numbers whenever we click on that page number we will go to that page and display 10 records like we will display 5 pages it is like this << 1 2 3 4 5 next >>
Explain the difference between a web server and a web container?
Is java servlet still used?
How to rectify errors in java servlet while compilation?
What is a deployment descriptor?
What is the difference between the servlets and cgi programs?
Explain the war file?
Describe servlet?
What is difference between get and post method?