RE: Session timeout question

2001-02-11 Thread Dave Watts

  i don't think that's strictly correct. you can't "define the 
  timeouts" of session variables, you define them of the entire 
  session.

 i have an application that uses frames. i pull pages into the 
 interface from different directories which each have a separate 
 application.cfm.
 
 that's how i timeout different sessions at different times.

Strictly speaking, then, it sounds like you have one interface that combines
multiple applications. After all, an "application" in CF is a set of files
with the same application name, which is typically provided by one
CFAPPLICATION tag in a shared Application.cfm file.

I'm kind of curious what value this brings to your app. I've never felt the
need to do this, but I may just have limited imagination.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Session timeout question

2001-02-10 Thread Terry Bader

im interested in this as well because a session is your whole session scope
which includes all your variables in that scope...   thus a session timout
should clear all variables in that scope...

so please do share



Terry Bader
IT/Web Specialist
EDO Corp - Combat Systems
(757) 424-1004 ext 361 - Work
[EMAIL PROTECTED]   


(757)581-5981 - Mobile
[EMAIL PROTECTED]
icq: 5202487   aim: lv2bounce
http://www.cs.odu.edu/~bader






-Original Message-
From: Aidan Whitehall [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 09, 2001 4:24 AM
To: CF-Talk
Subject: RE: Session timeout question


 that's not exactly true. if you define the timeouts of 
 session variables in
 an application.cfm file, they can timeout at different times. 
 if you set one
 to timeout in 15 minutes and another at 30 minutes, then idled for 20
 minutes, the first would timeout, the second would not.

How would you code that?

I've only ever used SESSIONTIMEOUT used globally in the CFAPPLICATION tag.



-- 
Aidan Whitehall [EMAIL PROTECTED]
Netshopper UK Ltd
Advanced Web Solutions  Services

http://www.netshopperuk.com/
Telephone +44 (01744) 648650
Fax +44 (01744) 648651
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Session timeout question

2001-02-10 Thread Dylan Bromby

i have an application that uses frames. i pull pages into the interface from
different directories which each have a separate application.cfm.

that's how i timeout different sessions at different times.

-Original Message-
From: Christopher Olive, CIO [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 09, 2001 6:26 AM
To: CF-Talk
Subject: RE: Session timeout question


i don't think that's strictly correct.  you can't "define the timeouts" of
session variables, you define them of the entire session.

chris olive, cio
cresco technologies
[EMAIL PROTECTED]
http://www.crescotech.com



-Original Message-
From: Dylan Bromby [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 08, 2001 3:34 PM
To: CF-Talk
Subject: RE: Session timeout question


that's not exactly true. if you define the timeouts of session variables in
an application.cfm file, they can timeout at different times. if you set one
to timeout in 15 minutes and another at 30 minutes, then idled for 20
minutes, the first would timeout, the second would not.

-Original Message-
From: Bud [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 07, 2001 2:49 PM
To: CF-Talk
Subject: Re: Session timeout question


On 2/7/01, Phoeun Pha penned:
Oh, i know the question now!  Are individual session variable timeouts
independent of other session variables, or are they all affected at the
same
instance?

All session variables that exist are refreshed at the same time when
cfapplication loads and will time out simultaneously, or real close
to it.
--

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Session timeout question

2001-02-09 Thread Aidan Whitehall

 that's not exactly true. if you define the timeouts of 
 session variables in
 an application.cfm file, they can timeout at different times. 
 if you set one
 to timeout in 15 minutes and another at 30 minutes, then idled for 20
 minutes, the first would timeout, the second would not.

How would you code that?

I've only ever used SESSIONTIMEOUT used globally in the CFAPPLICATION tag.



-- 
Aidan Whitehall [EMAIL PROTECTED]
Netshopper UK Ltd
Advanced Web Solutions  Services

http://www.netshopperuk.com/
Telephone +44 (01744) 648650
Fax +44 (01744) 648651

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Session timeout question

2001-02-09 Thread Christopher Olive, CIO

i don't think that's strictly correct.  you can't "define the timeouts" of
session variables, you define them of the entire session.

chris olive, cio
cresco technologies
[EMAIL PROTECTED]
http://www.crescotech.com



-Original Message-
From: Dylan Bromby [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 08, 2001 3:34 PM
To: CF-Talk
Subject: RE: Session timeout question


that's not exactly true. if you define the timeouts of session variables in
an application.cfm file, they can timeout at different times. if you set one
to timeout in 15 minutes and another at 30 minutes, then idled for 20
minutes, the first would timeout, the second would not.

-Original Message-
From: Bud [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 07, 2001 2:49 PM
To: CF-Talk
Subject: Re: Session timeout question


On 2/7/01, Phoeun Pha penned:
Oh, i know the question now!  Are individual session variable timeouts
independent of other session variables, or are they all affected at the
same
instance?

All session variables that exist are refreshed at the same time when
cfapplication loads and will time out simultaneously, or real close
to it.
--

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Session timeout question

2001-02-08 Thread Bud

On 2/7/01, Phoeun Pha penned:
Oh, i know the question now!  Are individual session variable timeouts
independent of other session variables, or are they all affected at the same
instance?

All session variables that exist are refreshed at the same time when 
cfapplication loads and will time out simultaneously, or real close 
to it.
-- 

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Session timeout question

2001-02-08 Thread Terry Bader

session timeout refers to a session as a whole and not the individual
components.  

all session scope variables will be cleared for that session when the
timeout limit is hit after the last time the user had used the site during
that specific session.

hope that made sense.

Terry Bader
IT/Web Specialist
EDO Corp - Combat Systems
(757) 424-1004 ext 361 - Work
[EMAIL PROTECTED]   


(757)581-5981 - Mobile
[EMAIL PROTECTED]
icq: 5202487   aim: lv2bounce
http://www.cs.odu.edu/~bader






-Original Message-
From: Phoeun Pha [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 07, 2001 2:43 PM
To: CF-Talk
Subject: Session timeout question


Does the session timeout apply to all session variables at the same time, or
since they were last used?  lemme be a lil' more clear

I have session.hello  and session.goodbye, and they are both active for now.
but then I stop using session.goodbye for a while, but at the same time, I
am continuously using session.hello.  Will session.goodbye timeout?  and if
it does time out, will session.hello timeout too (i doubt that, but I'm
paranoid)?

Oh, i know the question now!  Are individual session variable timeouts
independent of other session variables, or are they all affected at the same
instance?
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Session timeout question

2001-02-08 Thread Dylan Bromby

that's not exactly true. if you define the timeouts of session variables in
an application.cfm file, they can timeout at different times. if you set one
to timeout in 15 minutes and another at 30 minutes, then idled for 20
minutes, the first would timeout, the second would not.

-Original Message-
From: Bud [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 07, 2001 2:49 PM
To: CF-Talk
Subject: Re: Session timeout question


On 2/7/01, Phoeun Pha penned:
Oh, i know the question now!  Are individual session variable timeouts
independent of other session variables, or are they all affected at the
same
instance?

All session variables that exist are refreshed at the same time when
cfapplication loads and will time out simultaneously, or real close
to it.
--

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists