ColdFusion - Get All Active Sessions (hosted environment)

2010-02-23 Thread Joshua Rowe
Hello. I am trying to grab a collection of all active sessions within my ColdFusion application. Running the following code on my local machine is successful: and works great! However, when uploading this to my shared hosting account with CrystalTech, I receive the following error messag

Re: ColdFusion - Get All Active Sessions (hosted environment)

2010-02-23 Thread Mike Chabot
Write your own session tracking code and store the list of sessions in the application scope. A lot of people do this and you should be able to find various examples of this technique if you look around. -Mike Chabot On Tue, Feb 23, 2010 at 10:11 AM, Joshua Rowe wrote: > > Hello.  I am trying t

Re: ColdFusion - Get All Active Sessions (hosted environment)

2010-02-23 Thread Tony Bentley
Remember that any time you use the Coldfusion package, you can expect some changes over versioning and therefore your code could break. I would store sessions in the application scope onSessionStart. onSessionEnd, remove it. ~

RE: ColdFusion - Get All Active Sessions (hosted environment)

2010-02-25 Thread Andrew Scott
. -Original Message- From: Joshua Rowe [mailto:joshua.r...@varimereweb.com] Sent: Wednesday, 24 February 2010 2:11 AM To: cf-talk Subject: ColdFusion - Get All Active Sessions (hosted environment) Hello. I am trying to grab a collection of all active sessions within my ColdFusion application. Running