Alternatively, you could provide your own IHttpSessionStore. If you extend from HttpSessionStore or AbstractHttpSessionStore, you'll get a callback on onUnbind. You can't depend on the httpsession at that time, as it is being cleaned up, maybe already half way, but if you keep references to the Wicket session objects (add in onBind), you can still use that in onUnbind.
Eelco On 10/16/06, Ayodeji Aladejebi <[EMAIL PROTECTED]> wrote: > well i am working on a tiny wicket ajax chat component and i need a way for > the other forum members to know when a participant of the chat forum leaves > either by logging off (easy) or by leaving his web page idle until his > session times out , which is where i am not sure where to start but let me > go over eelcos reference > > > thanks > > On 10/15/06, Johan Compagner <[EMAIL PROTECTED]> wrote: > > just before is not possible (as far as i know) > > it is always after.. > > you can't touch the session then anymore (by using a httpsession > listener) > > so what do you want to do? > > > > johan > > > > > > On 10/15/06, Ayodeji Aladejebi <[EMAIL PROTECTED]> wrote: > > > please in a situation where my application needs to trigger an event > > > just before a session timeout, what can i do. thanks > > > > > > > ------------------------------------------------------------------------- > > > Using Tomcat but need to do more? Need to support web services, > security? > > > Get stuff done quickly with pre-integrated technology to make your job > easier > > > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > > > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > > _______________________________________________ > > > Wicket-user mailing list > > > [email protected] > > > > https://lists.sourceforge.net/lists/listinfo/wicket-user > > > > > > > > > > ------------------------------------------------------------------------- > > Using Tomcat but need to do more? Need to support web services, security? > > Get stuff done quickly with pre-integrated technology to make your job > easier > > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > > > _______________________________________________ > > Wicket-user mailing list > > [email protected] > > https://lists.sourceforge.net/lists/listinfo/wicket-user > > > > > > > > > > -- > Aladejebi Ayodeji A., > > DabarObjects Solutions > Email: [EMAIL PROTECTED] > Mobile: +234 803 589 1780 > Web: www.dabarobjects.com > Blog: blog.dabarobjects.com > > Community: > www.cowblock.net > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > _______________________________________________ > Wicket-user mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/wicket-user > > > ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Wicket-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-user
