Re: really strange session timeout

2011-08-24 Thread Justin Scott
> Now that should set the session timeout to 1 minute with the variable > holding a value of 0.0006944. The problem is, the above code > gives me a value of 60 instead. If I put the same code into the > onrequeststart method, it gives me the proper value. Am I missing >

really strange session timeout

2011-08-24 Thread Michael Dinowitz
I've got an application.cfc that is showing a really strange sessiontimeout. I have the following line between the cfcomponent tag and the first cffunction (as most people do): this.sessionTimeout = createTimeSpan(0,0,1,0) Now that should set the session timeout to 1 minute with the var

Re: jQuery and Session Timeout

2011-03-21 Thread Steve Milburn
AM, Steve Milburn wrote: >> >> Hello all. >> >> I've been using the technique detailed in a blog post by Ray Camden ( >> http://www.coldfusionjedi.com/index.cfm/2010/9/8/Example-of-handling-session-time-outs-in-an-Ajax-application) >> to detect a session tim

Re: jQuery and Session Timeout

2011-03-19 Thread Raymond Camden
t; > I've been using the technique detailed in a blog post by Ray Camden ( > http://www.coldfusionjedi.com/index.cfm/2010/9/8/Example-of-handling-session-time-outs-in-an-Ajax-application) > to detect a session timeout during an ajax request and take appropriate > action.  This has bee

RE: jQuery and Session Timeout

2011-03-18 Thread andy matthews
riday, March 18, 2011 1:28 PM To: cf-talk Subject: jQuery and Session Timeout Hello all (sorry if this is posted twice...) I've been using the technique detailed in a blog post by Ray Camden (http://www.coldfusionjedi.com/index.cfm/2010/9/8/Example-of-handling-sessio n-time-outs-in-an-Ajax-appli

jQuery and Session Timeout

2011-03-18 Thread Steve Milburn
Hello all (sorry if this is posted twice...) I've been using the technique detailed in a blog post by Ray Camden (http://www.coldfusionjedi.com/index.cfm/2010/9/8/Example-of-handling-session-time-outs-in-an-Ajax-application) to detect a session timeout during an ajax request and take approp

jQuery and Session Timeout

2011-03-18 Thread Steve Milburn
Hello all. I've been using the technique detailed in a blog post by Ray Camden ( http://www.coldfusionjedi.com/index.cfm/2010/9/8/Example-of-handling-session-time-outs-in-an-Ajax-application) to detect a session timeout during an ajax request and take appropriate action. This has been se

Re: OnRequest and session timeout

2009-04-21 Thread James Holmes
You need to use JavaScript to count down the time left in the session and to take the appropriate action when the session ends. You can't do what you're trying to do in Application.cfc. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/4/21 Priya Koya : > > Ben

Re: OnRequest and session timeout

2009-04-21 Thread Priya Koya
Ben, Ok, so how do I really redirect the page to home page then... My guessing was wrong it doesnt take the session or application end.. Thanks, > Priya, > > The "page" value that is send to the OnRequest() method will never be > onSessionEnd or onApplicationEnd. I think you are getting confus

Re: OnRequest and session timeout

2009-04-21 Thread Ben Nadel
Priya, The "page" value that is send to the OnRequest() method will never be onSessionEnd or onApplicationEnd. I think you are getting confused in how the Application.cfc works. Those two methods (onSessionEnd() and onApplicationEnd()) are executed outside of any page request (they are called dir

Re: OnRequest and session timeout

2009-04-21 Thread Priya Koya
It is a session timeout set in application.cfc. I set the session time out as I tried using something like this.. but it is poping up with some error for redirecting a page to home page. >Pr

Re: OnRequest and session timeout

2009-04-21 Thread Ben Nadel
Priya, I am not sure what you mean when you say a page has timedout? Do you mean that ColdFusion has thrown a timeout error? -- Ben Nadel Adobe Community Expert Adobe Certified Advanced ColdFusion Developer Manager New York ColdFusion User Group http://www.bennadel.com Need ColdFusion Help? h

OnRequest and session timeout

2009-04-20 Thread Priya Koya
how can I redirect to the homepage once the page is timedout using function in application.cfc and also wanna know how to make a page timeout comparing the present time and the session set time. Thanks a lot for help, Priya ~~~

Referencing a preset session timeout value

2009-02-11 Thread boybles maldooney
How do I reference the session timeout value (that has been set globally in administrator or locally in the application)? I want to use that value within an app I'm developing, which needs to be implimented as part of a bigger application on different servers/configurations. So I ne

Session Timeout

2007-11-10 Thread Richard White
Hi, Just wondering what you guys think is the best way to implement and handle session timeouts. i have seen some people putting it in the cflogin tag and others doing it in other ways. i would appreciate a very simple example or a link to a site that provides the simple example, i know its p

RE: Session timeout problems

2007-04-09 Thread Bader, Terrence C CTR MARMC, 231
When this happens is it just that one user or do all users on get reset? -Original Message- From: Jason Dunaway [mailto:[EMAIL PROTECTED] Sent: Friday, April 06, 2007 13:26 To: CF-Talk Subject: Re: Session timeout problems After you suggested this we decided to see what was going on

Re: Session timeout problems

2007-04-08 Thread Dana Kowalski
not discounting those things but I see the exact same functionality, as do a few others, without frames and Ajax =\ We actually do have support with CF 7.x and I should put in a call on this soon myself. If I find anything I'll let you guys know.

RE: Session timeout problems

2007-04-07 Thread Dave Watts
> Does the use of AJAX also make race conditions more likely? Yes, in the same way that frames, popup windows, etc also make race conditions more likely. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our

Re: Session timeout problems

2007-04-07 Thread James Holmes
rio. On 4/7/07, Ariel Jakobovits <[EMAIL PROTECTED]> wrote: > Does the use of AJAX also make race conditions more likely? > > - Original Message > From: James Holmes <[EMAIL PROTECTED]> > To: CF-Talk > Sent: Friday, April 6, 2007 8:04:20 AM > Subject

Re: Session timeout problems

2007-04-07 Thread Ariel Jakobovits
Does the use of AJAX also make race conditions more likely? - Original Message From: James Holmes <[EMAIL PROTECTED]> To: CF-Talk Sent: Friday, April 6, 2007 8:04:20 AM Subject: Re: Session timeout problems If you aren't using frames (or any other techniques that co

Re: Session timeout problems

2007-04-06 Thread Jason Dunaway
After you suggested this we decided to see what was going on here. YES, we are seeing that when the timeout occurs the user has a new jsessionid assignedwhich would make sense because the session objects are gone. We're cfdumping all of the different scope variables and see that they are d

Re: Session timeout problems

2007-04-06 Thread James Holmes
If you aren't using frames (or any other techniques that could request multiple pages in the same session simultaneously), then session scope race conditions are very unlikely. On 4/6/07, Jason Dunaway <[EMAIL PROTECTED]> wrote: > I do use cflock throughout the site, but not when creating a "user

Re: Session timeout problems

2007-04-05 Thread Jason Dunaway
Everyone, Thanks for the responses thus far. I fear that the problem may be CFLOCK related. I'm not sure how setting up component objects in session should be treated. Here is some additional information about how things are setup: I do use cflock throughout the site, but not when creating a

Re: Session timeout problems

2007-04-05 Thread Caroline Wise
Our use of CFC's is very limited here, but we'll go over this again, thanks for the tip. Caroline On 4/5/07, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Thursday 05 Apr 2007, Caroline Wise wrote: > > Has anybody run into something like that? > > Yup, with un'var'ed variables in CFCs. > > --

Re: Session timeout problems

2007-04-05 Thread Josh Nathanson
Definitely look into the www.mysite.com versus mysite.com (no www) issue. This can cause the problems you're having. -- Josh - Original Message - From: "Jason Dunaway" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Thursday, April 05, 2007 5:40 AM Subject:

Re: Session timeout problems

2007-04-05 Thread Tom Chiverton
On Thursday 05 Apr 2007, Caroline Wise wrote: > Has anybody run into something like that? Yup, with un'var'ed variables in CFCs. -- Tom Chiverton Helping to completely improve wireless networks on: http://thefalken.livejournal.com This email

Re: Session timeout problems

2007-04-05 Thread Caroline Wise
I'm having a seemingly similar problem. The application is running on two servers, but they do not share sessions, it is really more of a hardware load balancer situation. The user's session is supposed to time out after 30 minutes. Every once in a while I find that there are people who get an exce

Re: Session timeout problems

2007-04-05 Thread Dana Kowalski
Thanks Tom! I'll try that later today with one of the problem users and see what happens. A lot of times the reality is they have no control to set anything and have to get their IM staff involved to even modify trusted sites/cookie settings (aka sigh...). When we run into this it tends to be o

Re: Session timeout problems

2007-04-05 Thread Vince Collins (NHJobs.com)
Terrence, nice work around! -Vince Bader, Terrence C CTR MARMC, 231 wrote: > lol > > " I still have colleagues who use sessions and occasionally I hear them > complaining about a client timing out and loosing all their form data or > edit session. Timeouts to a customer is one of the most

Re: Session timeout problems

2007-04-05 Thread Tom Chiverton
On Thursday 05 Apr 2007, Dana Kowalski wrote: > 2. browser. See what browser is being used. We've found in 99% of the cases > it was Internet Explorer and the same user would never run into this One thing I found once with a similar sounding IE error (on one or two visitors a month to a fairly hi

RE: Session timeout problems

2007-04-05 Thread Bader, Terrence C CTR MARMC, 231
ioned that. -Original Message- From: Vince Collins (NHJobs.com) [mailto:[EMAIL PROTECTED] Sent: Thursday, April 05, 2007 9:40 To: CF-Talk Subject: Re: Session timeout problems I'm sorry Jason that I can't solve your problem but I'd suggest you look into increasing your

Re: Session timeout problems

2007-04-05 Thread Dana Kowalski
oh I forgot some other little things too. If you are using SSL, check how your users enter the site. If its not being handled correctly by the certificate this can cause issues sometimes. An incorrectly configured certificate can cause session problems if the user references the site as www.doma

Re: Session timeout problems

2007-04-05 Thread Dana Kowalski
I've had this issue for quite some time as well and here is a good wealth of information for youto do more research on! :) 1. track the CFID and watch it change when this occurs. IMHO thats one of the easiest ways to see this happening, I can re-create this almost flawlessly on some machines b

Re: Session timeout problems

2007-04-05 Thread Vince Collins (NHJobs.com)
t; > -Original Message- > From: Bader, Terrence C CTR MARMC, 231 > [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 05, 2007 9:02 AM > To: CF-Talk > Subject: RE: Session timeout problems > > "From what we've found, the CFID, CFTOKEN, and JSESSIONID are all still

RE: Session timeout problems

2007-04-05 Thread Jason Dunaway
worst case scenario" solution but hope to find out a better way of fixing this problem. Thanks for your feedback! -Original Message- From: Bader, Terrence C CTR MARMC, 231 [mailto:[EMAIL PROTECTED] Sent: Thursday, April 05, 2007 9:02 AM To: CF-Talk Subject: RE: Session timeout probl

RE: Session timeout problems

2007-04-05 Thread Jason Dunaway
to:[EMAIL PROTECTED] Sent: Thursday, April 05, 2007 8:56 AM To: CF-Talk Subject: Re: Session timeout problems Are the users for which this occurs on AOL connections by any chance? On 4/5/07, Jason Dunaway <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm having trouble with sessions timing

RE: Session timeout problems

2007-04-05 Thread Bader, Terrence C CTR MARMC, 231
since I had to think about that, but if im not mistaken, that should avoid cookie problems all together. ~Terry -Original Message- From: Jason Dunaway [mailto:[EMAIL PROTECTED] Sent: Thursday, April 05, 2007 7:41 To: CF-Talk Subject: Session timeout problems Hi all, I'm having t

Re: Session timeout problems

2007-04-05 Thread James Holmes
Are the users for which this occurs on AOL connections by any chance? On 4/5/07, Jason Dunaway <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm having trouble with sessions timing out randomly. I have 2 days to get a > fix together for this problem so any help is greatly appreciated. Here are > th

Session timeout problems

2007-04-05 Thread Jason Dunaway
er to access any page. If that variable is not defined, then we direct the user to a "session timeout" page that requires them to log back in. Our goal is to have the session timeout be set at 2 hours. We've made sure that, on the coldfusion server admin end, everything is set

Re: Help with Nesting Application.cfc's and session timeout

2007-03-30 Thread William Burba
Sorry All, had a tab key/enter issue on this, please disregard this post... ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & Flex 2 Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RV

Help with Nesting Application.cfc's and session timeout

2007-03-30 Thread William Burba
Hello All! This post relates to Jen N's on Extending Application.cfc. We have multiple environments set up on both Windows and Unix, with Unix being our production. Since moving to Unix, we replaced the so convenient CGI.REMOTE_USER with a process that calls web services, stored procedures and

Help with Nesting Application.cfc's and session timeout

2007-03-30 Thread William Burba
Hello All! This post relates to Jen N's on Extending Application.cfc. We have multiple environments set up on both Windows and Unix, with Unix being our production. Since moving to Unix, we replaced the so convenient CGI.REMOTE_USER with a process that calls web services, stored procedures and

Re: Action on session timeout

2006-11-18 Thread Raymond Camden
Just a note. Your message title mentioned session timeout, but your question in the email mentioned finding the sessions. Folks answered that well. If you want to run something on session timeout, use the new onSessionTimeout feature in CFMX7. I have a presentation available on my blog that covers

Re: Action on session timeout

2006-11-18 Thread Joseph Lamoree
On 18 Nov 2006, at 04:50, Richard Cooper wrote: > How do I check for any active sessions in a certain application? I wrote an application to browse active sessions called Clouseau. If you look the code, you'll see an example of using the coldfusion.runtime.SessionTracker. Here's the project

Re: Action on session timeout

2006-11-18 Thread James Holmes
ion: > I have an site with two Application.cfm files. One for the public side and > one for the CMS. > > Within the CMS appication.cfm I have set a session timeout of 30 minutes. > > Within the public side I have a chat/support system. If someone has an active > session in th

Action on session timeout

2006-11-18 Thread Richard Cooper
Hi all, How do I check for any active sessions in a certain application? The situtation: I have an site with two Application.cfm files. One for the public side and one for the CMS. Within the CMS appication.cfm I have set a session timeout of 30 minutes. Within the public side I have a chat

Re: Mysterious Session Timeout

2006-11-17 Thread Andrew Scott
If you have different cfid & cftoken's you are getting a new session from the server pure and simple. Serioulsy, go to livedocs.adobe.com.au and read up on CF it seems you haven't done that before. On 11/18/06, Mullai Subbiah <[EMAIL PROTECTED]> wrote: > > I am not sure about the application res

Re: Mysterious Session Timeout

2006-11-17 Thread Mullai Subbiah
I am not sure about the application resetting the value. I have opened three sessions under different user names. I have dumped the session variables. Every session has a different id, userid etc., Its not overwriting the values for each page request. Mullai >Well then look at it this way, yo

Re: Mysterious Session Timeout

2006-11-17 Thread Mullai Subbiah
Thanks for all your suggestions. I am going to turn the client cookies on and check with the client if they could. Then test it again. Thank you very much. Mullai ~| Introducing the Fusion Authority Quarterly Update. 80 pages o

Re: Mysterious Session Timeout

2006-11-17 Thread Andrew Scott
And you do not need to do this either It should be Notice the missing #'s and a few other things. On 11/18/06, Mullai Subbiah <[EMAIL PROTECTED]> wrote: > > >What makes you say that it is timming out? > > I think because in the application.log there is a message that one of the > session va

Re: Mysterious Session Timeout

2006-11-17 Thread Andrew Scott
Well then look at it this way, you are not passing the tokens with the url. You have clients that do not have cookies enabled, and you have switched it off on the application.cfm. It is not timing out, its being reset with new values for each page request its that simple. On 11/18/06, Mullai Sub

Re: Mysterious Session Timeout

2006-11-17 Thread Andrew Scott
Yes switch cookies on, setclientcookies to yes and away you go. or pass the cfid & cftoken with every url link back to the website. Sorry no otherway around it. Cookies are not a security risk, it was you put in them that become that. On 11/18/06, Mullai Subbiah <[EMAIL PROTECTED]> wrote: > > T

Re: Mysterious Session Timeout

2006-11-17 Thread Mullai Subbiah
>What makes you say that it is timming out? I think because in the application.log there is a message that one of the session variables "Element userid is undefined in session". This variable is set in the page after the user's login/password is accepted. This is the code which processes the us

Re: Mysterious Session Timeout

2006-11-17 Thread Josh Nathanson
ubbiah" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Friday, November 17, 2006 3:55 PM Subject: Re: Mysterious Session Timeout > Thank you. I have taken over this code from another programmer. I guess we > set client cookies to no 'cause of security concerns. The clien

Re: Mysterious Session Timeout

2006-11-17 Thread Dave Lyons
I have seen this happen when the url is like http://thesite.com but http://www.thesite.com works fine, i dunno why though. > I am using CFMX7. I am getting Session Timeouts when running the > application. > > I have set the application and session timeout defaults to be 10

Re: Mysterious Session Timeout

2006-11-17 Thread Mullai Subbiah
Thank you. I have taken over this code from another programmer. I guess we set client cookies to no 'cause of security concerns. The clients dont have their cookies enabled. I am now totally confused on the settings of . I am setting CFID to session.cfid and similar for CFToken so in case the u

Re: Mysterious Session Timeout

2006-11-17 Thread Josh Nathanson
ubbiah" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Friday, November 17, 2006 2:57 PM Subject: Mysterious Session Timeout >I am using CFMX7. I am getting Session Timeouts when running the >application. > > I have set the application and session timeout defaults t

Re: Mysterious Session Timeout

2006-11-17 Thread James Holmes
> > I have set the application and session timeout defaults to be 10 hour and > maximum - 2 days (CF Admin). Within my application.cfm I have set them to be > 9 hours (). I have enabled SessionManagement and disabled > clientcookies. I still dont understand why I am getting session

Re: Mysterious Session Timeout

2006-11-17 Thread Andrew Scott
What makes you say that it is timming out? I do see a cfaparam setting a session variable outside of a cflock. And why the hell are you turning of client Cookies? Do you intend on passing the tokens each call to the server manually? On 11/18/06, Mullai Subbiah <[EMAIL PROTECTED]> wrote: > > Ju

Re: Mysterious Session Timeout

2006-11-17 Thread Mullai Subbiah
Just to let you know we have four users accessing the server at the same time. Mullai ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to y

Mysterious Session Timeout

2006-11-17 Thread Mullai Subbiah
I am using CFMX7. I am getting Session Timeouts when running the application. I have set the application and session timeout defaults to be 10 hour and maximum - 2 days (CF Admin). Within my application.cfm I have set them to be 9 hours (). I have enabled SessionManagement and disabled

Re: setting Session timeout .net vs. CF

2005-12-08 Thread Nathan Strutz
Ken, There's no administrator, there's just different levels of config files. I don't actually know where the else the session timeout setting would be set, but it may be able to go in the system.config, and the web.config, and the web.config for each individual site. Generally

setting Session timeout .net vs. CF

2005-12-08 Thread Ken Ketsdever
I am the web administrator. I set up websites in IIS, then instances in CF (MX7.01). Until recently we were a CF house. We recently brought in a .NET guy. We are mixing our first application. The core of the project is written in .NET with two pieces written in CF. The CF session Timeout is

RE: Session Timeout

2005-06-07 Thread James Holmes
It may not be the issue, but since you are on CF 5 you need a readonly lock around as you are reading the scope in the IsDefined() check. -Original Message- From: David Ahn [mailto:[EMAIL PROTECTED] Sent: Tuesday, 7 June 2005 11:46 To: CF-Talk Subject: Session Timeout Hi

Session Timeout

2005-06-07 Thread David Ahn
Hi, All - >From time to time, my application gets terminated before it reaches the >session time-out set in application.cfm. In "application.cfm" Following code is executed when a user logs in. By the way, the default session timeout is 60 minutes o

RE: Session Timeout and User Authentication

2005-04-26 Thread Micha Schopman
- -Original Message- From: Paul Wilson [mailto:[EMAIL PROTECTED] Sent: dinsdag 26 april 2005 8:24 To: CF-Talk Subject: Session Timeout and User Authentication I have a user authentication system in my application that allows you to log in and view certain areas of the site based on a session

Session Timeout and User Authentication

2005-04-26 Thread Paul Wilson
I have a user authentication system in my application that allows you to log in and view certain areas of the site based on a session variable. I'm wondering how people handle the following scenario. User logs in and has a browse of the site and finishes on a secure page. Then does nothing and the

REPOST: Determine session timeout setting in CF5 on Linux

2005-03-28 Thread Scott Brady
admin had set the max session timeout at 20 minutes (which means it overrode the tag, which has it set to 1 hour). Even after that, the app is timing out after 20 minutes. I've restarted CF multiple time, and it hasn't helped. My concern is that the "restart" isn't really

Determine session timeout setting in CF5 on Linux

2005-03-24 Thread Scott Brady
admin had set the max session timeout at 20 minutes (which means it overrode the tag, which has it set to 1 hour). Even after that, the app is timing out after 20 minutes. I've restarted CF multiple time, and it hasn't helped. My concern is that the "restart" isn't really

RE: AD timeout / CF session timeout

2004-04-23 Thread Douglas.Knudsen
/ CF session timeout Does anyone know how the long a "session" lives when authenticating off of AD (tied through IIS)? We have moved to a single sign-on solution and I am trying to rework how our apps timing out will work with AD timeouts and what to do when timeouts occur. Tha

SOT: AD timeout / CF session timeout

2004-04-23 Thread Tangorre, Michael
Does anyone know how the long a "session" lives when authenticating off of AD (tied through IIS)? We have moved to a single sign-on solution and I am trying to rework how our apps timing out will work with AD timeouts and what to do when timeouts occur. Thanks! Mike [Todays Threads] [This

losing session vars before session timeout

2003-09-25 Thread Chris Hamer
r the test page sets the session timeout to 20 minutes and the application timeout to 8 hours. Any help would be much appreciated. Thanks in advance. Chris ~| Message: http://www.houseoffusion.com/lists.cfm?link=i:4:1

RE: Redirect on Session Timeout script

2003-08-14 Thread Douglas.Knudsen
} else setTimeout( "sessionTimer()",1000 ); } } sessionTimer(); //--> >-Original Message----- >From: Jim Johnson [mailto:[EMAIL PROTECTED] >Sent: Wednesday, August 13, 2003 4:46 PM >To: CF-Talk >Subject: Redirect on Session Timeout script

Redirect on Session Timeout script

2003-08-14 Thread Jim Johnson
Hello, I'm using session vars in my app, with the default timeout setting of 20 minutes. Does anyone have a script for redirecting to a login page, if/when the session var has timed out? I've searched around the MM site, cflib.org and HofF archives, but couldn't find anything. Thanks, James ~~

Changing a session timeout based on login

2003-06-17 Thread James Johnson
Hello, Searched through the archives but couldn't find the answer. Is there a way to dynamically change a SESSION's timeout property in Application.cfm based on a user's login? For example, a "general" user has a 20 minute timeout, while an "admin" user has a 3 hour timeout. Thanks, James

session timeout clarification

2003-03-11 Thread Kelly Tetterton
Folks -- a colleague of mine asked me to help him with some changes to the way he was treating his session variables, but in doing so, I've run into something of a misunderstanding of how I *thought* session variables worked. Specifically, in the test code below, I would expect that 1) when yo

Re: Impending session timeout warning methods?

2002-06-05 Thread Gyrus
- Original Message - From: "Nick de Voil" <[EMAIL PROTECTED]> If you'd rather silently refresh the session of a user who's still in your site, without prompting them, this can be done surprisingly easily with JavaScript: --- If you needed to do this, I guess you co

Re: Impending session timeout warning methods?

2002-06-05 Thread Nick de Voil
If you'd rather silently refresh the session of a user who's still in your site, without prompting them, this can be done surprisingly easily with JavaScript: var dummy = new Image(); function keepAlive() { dummy.src="servlet.KeepAlive?t=" + new Date.valueOf(); // timestamp parameter to avoid

RE: Frames Usage (was RE: Impending session timeout warning metho ds?)

2002-06-05 Thread Shawn Grover
We have to develop for NS4+ and IE4+ for most of our applicaitons. limits us in what we can do... -Original Message- From: Gyrus [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 11:30 AM To: CF-Talk Subject: Re: Frames Usage (was RE: Impending session timeout warning methods

Re: Frames Usage (was RE: Impending session timeout warning methods?)

2002-06-05 Thread Gyrus
t;[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, June 05, 2002 6:00 PM Subject: Frames Usage (was RE: Impending session timeout warning methods?) While I agree that traditional frames have their limits, they also have their uses. The key is to carefully

Frames Usage (was RE: Impending session timeout warning methods?)

2002-06-05 Thread Shawn Grover
ntire page. My thoughts. Shawn Grover -Original Message- From: Gyrus [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 10:25 AM To: CF-Talk Subject: Re: Impending session timeout warning methods? Here's A List Apart's list of problems with frames, with my comments on how

RE: Impending session timeout warning methods?

2002-06-05 Thread Dave Watts
> Here's A List Apart's list of problems with frames, with my > comments on how this works for private, password-protected > web apps: (http://alistapart.com/stories/frames/) > > - You cannot bookmark an individual page > Good! People should always enter the site through the login page. > > -

RE: Impending session timeout warning methods?

2002-06-05 Thread Lee Fuller
e- | From: Shawn Grover [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, June 05, 2002 9:10 AM | To: CF-Talk | Subject: RE: Impending session timeout warning methods? | | | Do you give the user an option to keep the session open? I | can picture in my head a method or two to do this (requesting

Re: Impending session timeout warning methods?

2002-06-05 Thread Gyrus
- Original Message - From: "Shawn Grover" <[EMAIL PROTECTED]> Do you give the user an option to keep the session open? I can picture in my head a method or two to do this (requesting a simple, meaningless page in an IFrame or another window). Or do you just tell the user their session is

Re: Impending session timeout warning methods?

2002-06-05 Thread Gyrus
dows and such like could be missed or ignored. When they click OK, they get redirected back to login. - Of course, this is all pretty annoying if a user can't complete a form in less than the session timeout, so there's a RESET link or button next to the session timer that reloads just th

RE: Impending session timeout warning methods?

2002-06-05 Thread Shawn Grover
curious. Shawn Grover -Original Message- From: Lee Fuller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 9:55 AM To: CF-Talk Subject: RE: Impending session timeout warning methods? Actually, we've done this, and yes.. Only way we found to do it was in JS. You're r

RE: Impending session timeout warning methods?

2002-06-05 Thread Lee Fuller
ds on the need, I guess. Lee Fuller PrimeDNA / AAA Web Hosting Corporations | -Original Message- | From: Shawn Grover [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, June 05, 2002 8:48 AM | To: CF-Talk | Subject: RE: Impending session timeout warning methods? | | | I don't se

RE: Impending session timeout warning methods?

2002-06-05 Thread Shawn Grover
I don't see how this can happen, other than a javascript timer object. Each successive request from the server resets the timer for session timeout. So, the moment the page does anything (that requires server interaction), the warning becomes meaningless. My personal thought is that users

Impending session timeout warning methods?

2002-06-05 Thread Stephen Hait
Does anyone attempt to warn a user that their session will shortly expire? Could javascript with a timer allow popping up a window, say, when the session will expire in 2 minutes? Are there any better approaches? TIA, Stephen ___

RE: Session timeout and inactivity time

2002-06-05 Thread Stephen Hait
Thanks for the quick response. Stephen > > If cfapplication specifies a sessiontimeout of 10 minutes, > > will any session variables be destroyed after 10 minutes > > or only after 10 minutes of inactivity? > > After ten minutes of inactivity. > > Dave Watts, CTO, Fig Leaf Software > http://

Re: Session timeout and inactivity time

2002-06-04 Thread Bud
On 6/4/02, Stephen Hait penned: >If cfapplication specifies a sessiontimeout of 10 minutes, will any >session variables be destroyed after 10 minutes or only after 10 >minutes of inactivity? Inactivity. -- Bud Schneehagen - Tropical Web Creations _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ ColdFus

RE: Session timeout and inactivity time

2002-06-04 Thread Dave Watts
> If cfapplication specifies a sessiontimeout of 10 minutes, > will any session variables be destroyed after 10 minutes > or only after 10 minutes of inactivity? After ten minutes of inactivity. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-544

Re: Session timeout and inactivity time

2002-06-04 Thread Matt Robertson
10 minutes of inactivity. --- Matt Robertson[EMAIL PROTECTED] MSB Designs, Inc., www.mysecretbase.com --- -- Original Message -- from: "Stephen Hait" <[EMAIL PROTECTED]> Reply-To:

Session timeout and inactivity time

2002-06-04 Thread Stephen Hait
If cfapplication specifies a sessiontimeout of 10 minutes, will any session variables be destroyed after 10 minutes or only after 10 minutes of inactivity? TIA, Stephen __ Your ad could be here. Monies from ads go to support t

RE: premature session timeout

2002-04-10 Thread cf refactoring
Didn't think about trusted cache, but no, it isn't enabled. --- Dave Watts <[EMAIL PROTECTED]> wrote: > > I'm having a problem with premature session > timeout in > > a legacy application. > > > > I've set the CF administrator value to 3

RE: premature session timeout

2002-04-10 Thread Dave Watts
> I'm having a problem with premature session timeout in > a legacy application. > > I've set the CF administrator value to 3 hours, and > the sessiontimeout attribute of the cfapplication tag > also to 3 hours, but it still seems to be timing out > at the de

RE: premature session timeout

2002-04-10 Thread Kevin Schmidt
: CF-Talk Subject: premature session timeout I'm having a problem with premature session timeout in a legacy application. I've set the CF administrator value to 3 hours, and the sessiontimeout attribute of the cfapplication tag also to 3 hours, but it still seems to be timing out at the def

Re: premature session timeout

2002-04-10 Thread Matt Robertson
etbase.com --- -- Original Message -- from: cf refactoring <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] date: Wed, 10 Apr 2002 14:15:59 -0700 (PDT) I'm having a problem with premature session timeout in a legacy applicat

premature session timeout

2002-04-10 Thread cf refactoring
I'm having a problem with premature session timeout in a legacy application. I've set the CF administrator value to 3 hours, and the sessiontimeout attribute of the cfapplication tag also to 3 hours, but it still seems to be timing out at the default of 20 min. I've also checke

RE: record session timeout

2002-04-09 Thread Rick Osborne [mojo]
I can think of several different ways, each with their own pros and cons. Instead of thinking in terms of when a Session *has timed out*, think in terms of when a Session *will time out*. 1. Update your DB with the current time {NOW()} plus your session timeout length every time the user hits a

  1   2   >