Nope - with 4.1.24 I still get called for valueBound() but not valueUnbound().

Any other ideas?


code:

public class FileList implements HttpSessionBindingListener {
    public void valueBound(HttpSessionBindingEvent event) {
        event.getSession().getServletContext().log( "bind" );
    }
 
    public void valueUnbound(HttpSessionBindingEvent event) {
        // never logged
        event.getSession().getServletContext().log( "unbind" );
    }
}





----- Original Message ----- 
From: "Hans Bergsten" <[EMAIL PROTECTED]>
To: "Tomcat Developers List" <[EMAIL PROTECTED]>
Sent: Saturday, March 29, 2003 2:19 PM
Subject: Re: HttpSessionBindingListener.valueUnbound() not called


> David Thielen wrote:
> > Hi;
> > 
> > I have an object that implements HttpSessionBindingListener. It calls
> > valueBound fine. But it never calls valueUnbound. Not when it times out and
> > not when Tomcat is closed. I am running 4.1.18.
> > 
> > Any ideas?
> 
> It works fine in TC 4.1.24, so you may want to upgrade.
> 
> Hans
> -- 
> Hans Bergsten                                <[EMAIL PROTECTED]>
> Gefion Software                       <http://www.gefionsoftware.com/>
> Author of O'Reilly's "JavaServer Pages", covering JSP 1.2 and JSTL 1.0
> Details at                                    <http://TheJSPBook.com/>
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 

Reply via email to