what is use of session tracking ?with example?



what is use of session tracking ?with example?..

Answer / sivasubramanian.k

Session Tracking is one of the most powerful features of
Servlets and JSP. Basically, the servlet engine takes care
of using Cookies in the right way to preserve state across
successive requests by the same user. Your servlet just
needs to call a single method (getSession) and it has
access to a persistent hashtable of data that's unique to
the current user

public void doPost(HttpServletRequest request,
HttpServletResponse response){
...
//lets take the session obj
HttpSession session = request.getSession(true);
//now let us take the user name assosiated with this session
String currUserLogin = (String) session.getAttribute
("currentUserLogin")
...
//now we do the work according to the user name
doSomeWork(currUserLogin);
...

}

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More Core Java Interview Questions

What is an arraylist in java?

0 Answers  


What is method with example?

0 Answers  


how session will be expired?

5 Answers   CybAge, Infosys,


What interface is extended by awt event listeners?

0 Answers  


Difference between Hash Table and Hash Map?

10 Answers   Persistent,






Functionality of JVM?

7 Answers   Infosys,


Explain the role played by Java Virtual Machine in Java Programming?

1 Answers  


What is canonical name in java?

0 Answers  


Which class cannot be a subclass in java?

0 Answers  


What is the % operator?

2 Answers  


What is the replace tool?

0 Answers  


Features of JAVA ? In which version of java synchronizedXXX() methods are included in Collections class.

1 Answers   NIIT,


Categories