Hi Bharat,
HttpSessionBindingListener is an interface specifically used for session management.
If u want to know when the session is binded and unbinded, then u have to implement a class with this interface and use it in your
servlet.
This interface has two methods 1) valueBound 2) valueUnBound
Implementing this two methods, u can do some useful work like whenever a session is binded, u can load the user related file in to memory and perform some actions on it, and when ever the session ends you can save the data back.
I hope u find this info useful.
bye.
Loke