RE: What determines session inactivity timeouts?

2006-04-26 Thread Ashwin Mathew
has been cleared from the associated J2EE session. Ashwin -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 26, 2006 11:06 PM To: CF-Talk Subject: Re: What determines session inactivity timeouts? OK, I did what I should have don

RE: What determines session inactivity timeouts?

2006-04-26 Thread Dawson, Michael
Awesome information! -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 26, 2006 12:36 PM To: CF-Talk Subject: Re: What determines session inactivity timeouts? OK, I did what I should have done before starting this thread

Re: What determines session inactivity timeouts?

2006-04-26 Thread powell
f testing this by setting a session >variable, sleeping the thread for several minutes (to let the session >timeout), then trying to read the same session variable and see if it >still exists. > >M!ke > >-----Original Message- >From: Shawn McKee [mailto:[EMAIL PROTECTED] &

RE: What determines session inactivity timeouts?

2006-04-26 Thread Dawson, Michael
McKee [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 26, 2006 9:00 AM To: CF-Talk Subject: RE: What determines session inactivity timeouts? As developers do we have access to these session variables? If so why not just update them manually every so often during page processing? You could also over

RE: What determines session inactivity timeouts?

2006-04-26 Thread Shawn McKee
Message- From: Ashwin Mathew [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 26, 2006 12:52 AM To: CF-Talk Subject: RE: What determines session inactivity timeouts? The session's last accessed time is updated every time a page is hit, and every time a session variable is read, written or re

RE: What determines session inactivity timeouts?

2006-04-26 Thread Shawn McKee
Message- From: Ashwin Mathew [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 26, 2006 12:52 AM To: CF-Talk Subject: RE: What determines session inactivity timeouts? The session's last accessed time is updated every time a page is hit, and every time a session variable is read, written or re

RE: What determines session inactivity timeouts?

2006-04-25 Thread Ashwin Mathew
l 26, 2006 4:46 AM To: CF-Talk Subject: Re: What determines session inactivity timeouts? Thanks Mike, but I was looking for a bit more granular detail - I know that the page request resets the inactivity timer. But that occurs at the beginning of the page processing - I'm more concerned abou

Re: What determines session inactivity timeouts?

2006-04-25 Thread powell
Thanks Mike, but I was looking for a bit more granular detail - I know that the page request resets the inactivity timer. But that occurs at the beginning of the page processing - I'm more concerned about what happens after that point in order to keep the session active. Is CF keeping the sessi

RE: What determines session inactivity timeouts?

2006-04-25 Thread Dawson, Michael
Every .cfm page request, regardless of session variable usage, within a given application, resets that particular session's timeout counter. CF's session management is related to the session cookies (cfid/cftoken or the J2EE session) that are automatically set, by ColdFusion. You do not need to c