How do you track a user session in servlets?
Answers were Sorted based on User's Feedback
Answer / udayc how
1)user authentication
2)hidden form fields
3)cookies
4)url rewriting
5)httpsession
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / ravikiran.chd
by making use of session tracking mechanisms such as
1).Hidden Form Fields
2).cookies
3).Http Sessions
4).Url Rewriting
| Is This Answer Correct ? | 4 Yes | 0 No |
describe all about advanced java with presentation
What is difference between PrintWriter and ServletOutputStream?
What mechanisms are used by a Servlet Container to maintain session information?
What is the need of session tracking in web application?
Can a servlet be called by passing its name as a parameter in the URL?
What is servletconfig?
What are the common methods that are included in the http servlet class?
What is http servlet?
Hi Frieds, I am new to servlet why to use servlet in webapplication. what i know is " use servlet as a controller in mvc and to implemnent business logic . is it correct ? One more thing reason for implementing business logic with servlets , why not jsp.
What is the difference between using getSession(true) and getSession(false) methods?
Why should we go for interservlet communication?
Who is responsible for writing a constructor?