Hi, vempadu
fnx, i know it
i need to control "session on start" and "session on end" events.
i've found an example of this techniques, but i don't know how i can use it in my jsp
----
MyListener.java
----
import javax.servlet.http.*;
import javax.servlet.*;
public class MyListener implements HttpSessionBindingListener {
ServletContext context;
public void ODSessionListener(ServletContext context) {
this.context = context;
}
public void valueBound(HttpSessionBindingEvent event) {
// called when this class is put [putValue] into the session
System.out.println(" ** [valueBound] ** Someone just bound my listener to a session!"

;
}
public void valueUnbound(HttpSessionBindingEvent event) {
// called when this class is removed [removeValue or invalidate] from the session
System.out.println(" ** [valueBound] ** Someone just bound my listener to a session!"

;
}
}
----