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

RE: cf5 session variables

2004-06-09 Thread Shawn Grover
with CF5, you can configure the server to automagically lock for you.We routinely configured the server to automatically lock on read, but put policy in place to have the coders do a manual lock (via cflock) anytime they assigned a value to a session variable (writes). If you do not configure

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