CF5 Session Variables Timing out early?

2005-10-13 Thread paulh
I'm running CF5 and I can't figure out why my session variables timeout approx every 30min even though I've set the maximum timeout and default timeout to 1 day (as a test) in the cfserver on the Memory Variables page. Originally I had specified the timeout values within the application.cfm page

Re: cf5 session variables

2004-06-10 Thread Doug James
To: CF-Talk Subject: Re: cf5 session variables The situation I have is a cfm page with an html page (that submits a form to a cfm) embedded in an iframe. The outer cfm page is viewed by our clients for up to an hour or more. After a about 30 minutes or so of inactivity causes the next submission

RE: cf5 session variables

2004-06-10 Thread Semrau Steven Ctr SAF/IE
at work. Steven Semrau Senior Software Engineer SRA International, Inc -Original Message- From: Doug James [mailto:[EMAIL PROTECTED] Sent: Thursday, June 10, 2004 2:03 PM To: CF-Talk Subject: Re: cf5 session variables The admin timeout is set to 20 minutes and the cfapplication timeout

Re: cf5 session variables

2004-06-10 Thread Matt Friedman
Can you move it to a client variable? Or place in the application.cfm a check for the session, if it is not there then rebuild the session based off an cookie value. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: cf5 session variables

2004-06-10 Thread Semrau Steven Ctr SAF/IE
There are a couple of custom tags in the Exchange that deal with this, if I remember correctly, heck you might even be able to find the one I did 3 years ago. Basically you would run a _javascript_ timer in the background that would load/reset every page call.The timer would be set to expire

cf5 session variables

2004-06-09 Thread Doug James
Could someone please refresh my memory regarding session variables and cf5. Should all reads and writes be locked? Has anyone experienced problems with session variables being passed from a cfm template to an html page and then on to a 2nd cfm template? TIA! Doug [Todays Threads] [This

RE: cf5 session variables

2004-06-09 Thread Shawn Grover
the server, then all reads and writes should be locked. (to the best of my knowledge at least). Shawn -Original Message- From: Doug James [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 09, 2004 9:30 AM To: CF-Talk Subject: cf5 session variables Could someone please refresh my memory

RE: cf5 session variables

2004-06-09 Thread Dave Watts
Could someone please refresh my memory regarding session variables and cf5. Should all reads and writes be locked? Yes. Has anyone experienced problems with session variables being passed from a cfm template to an html page and then on to a 2nd cfm template? For obvious reasons, you

Re: cf5 session variables

2004-06-09 Thread Doug James
The situation I have is a cfm page with an html page (that submits a form to a cfm) embedded in an iframe. The outer cfm page is viewed by our clients for up to an hour or more. After a about 30 minutes or so of inactivity causes the next submission to bomb out. The session time out is set to

RE: cf5 session variables

2004-06-09 Thread Semrau Steven Ctr SAF/IE
for 30 minutes, 30 minutes would prevail as the timeout value. -Original Message- From: Doug James [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 09, 2004 12:17 PM To: CF-Talk Subject: Re: cf5 session variables The situation I have is a cfm page with an html page (that submits a form