Re: AJAX & Sessions

2011-01-28 Thread Dale Newfield
On 1/27/11 9:28 PM, CRANFORD, CHRIS wrote: 2. Does HttpSession contain value holding time of last User request? No -> Create one, store it in session, proceed Shouldn't that "-> LOGIN" instead of "proceed"? -Dale -

RE: AJAX & Sessions

2011-01-28 Thread Biesbrock, Kevin
a DIV. How would you handle clearing the > > screen and sending the user to the LOGIN page without putting the > > LOGIN page in that DIV? > > > > I really want to implement AJAX/JSON stuff properly in this > > application properly. > > > >> -Or

Re: AJAX & Sessions

2011-01-27 Thread Steven Yang
> >> -Original Message- > >> From: Scott [mailto:stanl...@gmail.com] > >> Sent: Thursday, January 27, 2011 8:37 PM > >> To: 'Struts Users Mailing List' > >> Subject: RE: AJAX & Sessions > >> > >> Are these Ajax r

Re: AJAX & Sessions

2011-01-27 Thread Chris Pratt
e clearing the screen and > > sending the user to the LOGIN page without putting the LOGIN page in > > that DIV? > > > > I really want to implement AJAX/JSON stuff properly in this application > > properly. > > > >> -Original Message- > >>

Re: AJAX & Sessions

2011-01-27 Thread Dave Newton
Original Message- >> From: Scott [mailto:stanl...@gmail.com] >> Sent: Thursday, January 27, 2011 8:37 PM >> To: 'Struts Users Mailing List' >> Subject: RE: AJAX & Sessions >> >> Are these Ajax requests *not* human initiated?  IOW, are they time

RE: AJAX & Sessions

2011-01-27 Thread CRANFORD, CHRIS
essage- > From: Scott [mailto:stanl...@gmail.com] > Sent: Thursday, January 27, 2011 8:37 PM > To: 'Struts Users Mailing List' > Subject: RE: AJAX & Sessions > > Are these Ajax requests *not* human initiated? IOW, are they timers? > > > > From: CRANFOR

RE: AJAX & Sessions

2011-01-27 Thread Scott
Are these Ajax requests *not* human initiated? IOW, are they timers? From: CRANFORD, CHRIS [mailto:chris.cranf...@setech.com] Sent: Thursday, January 27, 2011 8:29 PM To: Struts Users Mailing List Subject: AJAX & Sessions In our application upon a successful authentication,

AJAX & Sessions

2011-01-27 Thread CRANFORD, CHRIS
In our application upon a successful authentication, the HttpSession property setMaxInactiveInterval is set to whatever our application's idle time out is so that if this value is reached, the session is destroyed and upon the next request to the server, the user will be redirected to a login page.