RE: Session Idle and Progress Bar

2005-04-07 Thread Wiebe de Jong
Wiebe -Original Message- From: Eain Mat [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 06, 2005 10:53 PM To: Struts Users Mailing List Subject: RE: Session Idle and Progress Bar >>I would solve it by adding a 1 minute refresh in a hidden frame in your page >>to a action wh

RE: Session Idle and Progress Bar

2005-04-06 Thread Eain Mat
how the long-running operation is going. Wiebe -Original Message- From: Leon Rosenberg [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 06, 2005 11:11 AM To: 'Struts Users Mailing List' Subject: re: Session Idle I would solve it by adding a 1 minute refresh in a hidden f

RE: Session Idle

2005-04-06 Thread Wiebe de Jong
is going. Wiebe -Original Message- From: Leon Rosenberg [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 06, 2005 11:11 AM To: 'Struts Users Mailing List' Subject: re: Session Idle I would solve it by adding a 1 minute refresh in a hidden frame in your page to a action which jus

RE: Session Idle

2005-04-06 Thread Wiebe de Jong
-Original Message- From: Leon Rosenberg [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 06, 2005 11:11 AM To: 'Struts Users Mailing List' Subject: re: Session Idle I would solve it by adding a 1 minute refresh in a hidden frame in your page to a action which just delivers next refresh

re: Session Idle

2005-04-06 Thread gdeschen
n Deschenes/NAT/CMHC-SCHL/CA) Subject:re: Session Idle Classification: I would solve it by adding a 1 minute refresh in a hidden frame in your page to a action which just delivers next refresh header. As long as the user has the page open, the session will never expire. After he cl

re: Session Idle

2005-04-06 Thread Leon Rosenberg
che Nachricht- > Von: Wiebe de Jong [mailto:[EMAIL PROTECTED] > Gesendet: Mittwoch, 6. April 2005 20:02 > An: 'Struts Users Mailing List' > Betreff: RE: Session Idle > > Is it possible to create a listener for the session timeout > event? This listener would check

re: Session Idle

2005-04-06 Thread Leon Rosenberg
che Nachricht- > Von: Wiebe de Jong [mailto:[EMAIL PROTECTED] > Gesendet: Mittwoch, 6. April 2005 20:02 > An: 'Struts Users Mailing List' > Betreff: RE: Session Idle > > Is it possible to create a listener for the session timeout > event? This listener would check

RE: Session Idle

2005-04-06 Thread Benedict, Paul C
st' Subject: RE: Session Idle Is it possible to create a listener for the session timeout event? This listener would check to see if there is an operation in progress. If there is, reset the timeout counter. If not, let the session expire. Wiebe -Original Message- From: Justin M

RE: Session Idle

2005-04-06 Thread Wiebe de Jong
: Wednesday, April 06, 2005 10:20 AM To: Struts Users Mailing List Subject: RE: Session Idle I think Eain is saying that he has some operations that take a long time, and he wants to suspend the timeout counter during those operations. So suppose the timeout in web.xml is 5 minutes. One particular

RE: Session Idle

2005-04-06 Thread Justin Morgan
idle when there is NOT a long process running, expire after 5 minutes. Is that what you meant, Eain? -Justin -Original Message- From: Fogleson, Allen [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 8:57 PM To: Struts Users Mailing List Subject: RE: Session Idle That is exactly

RE: Session Idle

2005-04-05 Thread Fogleson, Allen
at [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 7:32 PM To: Struts Users Mailing List Subject: Re: Session Idle if i invalidate the session, everything will be destory in the session. I still want the session to keep alive when user is in the middle of their processing operation even t

Re: Session Idle

2005-04-05 Thread Eain Mat
Gainty <[EMAIL PROTECTED]> wrote: --web.xml contents-- 5 then trap on the invalidate method for your HttpSession object Makes sense??? Martin- - Original Message - From: "Eain Mat" To: Sent: Tuesday, April 05, 2005 7:44 PM Subject: Session Idle > What is the si

Re: Session Idle

2005-04-05 Thread Martin Gainty
--web.xml contents-- 5 then trap on the invalidate method for your HttpSession object Makes sense??? Martin- - Original Message - From: "Eain Mat" <[EMAIL PROTECTED]> To: Sent: Tuesday, April 05, 2005 7:44 PM Subject: Session Idle > What is the simplest way t

Session Idle

2005-04-05 Thread Eain Mat
What is the simplest way to track the session idle? We cannot use session-timeout in web.xml because there may be leftover operation that is needed to process. Eain Mat