Re: Why HttpSessionEvent comes prior to ServletRequestEvent

2010-04-01 Thread Mark Thomas
On 01/04/2010 07:19, Mercy wrote: Hi, I declared two listeners , the former is a ServletRequestListener, the later is HttpSessionListener. When a client request calls the application first, why a HttpSessionEvent comes prior to ServletRequestEvent? Because something is triggering

Re: Why HttpSessionEvent comes prior to ServletRequestEvent

2010-04-01 Thread Mercy
Thanks,but I can't understand why not ServnetRequestEvent comes first? Kind regards, Mercy Mark Thomas wrote: On 01/04/2010 07:19, Mercy wrote: Hi, I declared two listeners , the former is a ServletRequestListener, the later is HttpSessionListener. When a client request calls the

RE: Why HttpSessionEvent comes prior to ServletRequestEvent

2010-04-01 Thread Caldarale, Charles R
From: Mercy [mailto:techme...@gmail.com] Subject: Re: Why HttpSessionEvent comes prior to ServletRequestEvent Thanks,but I can't understand why not ServnetRequestEvent comes first? Because the QuantumTunneling filter to reorder reality isn't scheduled until Tomcat 8. (Yes, this is 1 April

RE: Why HttpSessionEvent comes prior to ServletRequestEvent

2010-04-01 Thread Martin Gainty
the event listener responds to events which are occuring in the monitored object (in this case ServletContext) the first event listent is Servlet context creation, at which point the first request can be serviced http://sqltech.cl/doc/oas10gR3/web.1013/b14426/listener.htm#BABEFJDH as