Session Management

2000-07-06 Thread Matt Rodosky
Is it possible to terminate a session when a user closes their browser?? Its easy when a user logs out, or the session times out, it would be nice if you could also do it when the browser is closed. TIA Matt -- Archives:

session management

2000-07-14 Thread Tim Bahlke
Hey all, I am having a serious session management problem. Here is my cfapplication tag ... When I was working with the application last night I had a cfid of 71. This morning when I come back in (machine was shutdown last night) and logged back into the application I had a cfid of 71 and

session management

2001-04-05 Thread savan . thongvanh
are there any difficulties in maintaining thorough session management on a hosted cf server?? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail

session management

2001-03-28 Thread Savan Thongvanh
anyone seen a good article online about session management? I've tried a few common places. had trouble finding one even on sys-con.com. sheesh. ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Session Management

2004-11-02 Thread Chad McCue
I am looking for a tag or script that will allow a user to continue their session when it has expired due to their lack of using the site. I have looked at cfdev.com and checked out theirs, but it doesn't seem to work very well. Thanks ~

Session Management Errors

2000-08-08 Thread c talk
Hi I have an Application.cfm file with this code: That generates the following error: Attempt to access a Session variable when session management is not enabled. Use the CFAPPLICATION tag to enable session management. Note: This feature may have been disabled by the site

Client-Session Management?

2000-05-18 Thread Kevin Merker
Can cookie and ODBC data base client and session variable storage work in tandem with one another? For doing statistical reporting of site activity are the client -session variables with ODBC data base storage the major playing variables used? KM ---

RE: Session Management

2000-07-06 Thread Steve DeWitt
expire the cookie immediately -Original Message- From: Matt Rodosky [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 06, 2000 1:07 PM To: [EMAIL PROTECTED] Subject: Session Management Is it possible to terminate a session when a user closes their browser?? Its easy when a user logs out

RE: Session Management

2000-07-06 Thread Mark Warrick
From: Matt Rodosky [mailto:[EMAIL PROTECTED]] > Sent: Thursday, July 06, 2000 1:07 PM > To: [EMAIL PROTECTED] > Subject: Session Management > > > Is it possible to terminate a session when a user closes their > browser?? Its > easy when a user logs out, or the session tim

RE: Session Management

2000-07-07 Thread Peter Tilbrook
eg: I think :) -Original Message- From: Steve DeWitt [mailto:[EMAIL PROTECTED]] Sent: Friday, 7 July 2000 8:43 AM To: '[EMAIL PROTECTED]' Subject: RE: Session Management expire the cookie immediately -Original Message- From: Matt Rodosky [mailto:[EMAIL PROTEC

Re: Session Management

2000-07-07 Thread rkeniger
>Is it possible to terminate a session when a user closes their browser?? Its >easy when a user logs out, or the session times out, it would be nice if you >could also do it when the browser is closed. Not really, AFAIK. There is no javascript "onQuit" event or similar - although there is an "o

RE: Session Management

2000-07-07 Thread rkeniger
>expire the cookie immediately This won't work if you are using CF's session management because you don't specifically set cookies - it either uses CFID and CFTOKEN stored as a cookie OR as a URL argument. The expiration of the cookies is set by ColdFusion and is tied to t

Re: Session Management

2000-07-07 Thread Michael P. Morris
[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 06, 2000 4:07 PM Subject: Session Management > Is it possible to terminate a session when a user closes their browser?? Its > easy when a user logs out, or the session times out, it would be nice if you > coul

RE: Session Management

2000-07-07 Thread Dave Watts
> > expire the cookie immediately ... > eg: > > I think :) You can create "session cookies", which will expire when the browser is closed, by leaving off the EXPIRES parameter: Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 --

RE: Session Management

2000-07-07 Thread Matt Rodosky
Thanks Michael, great resource. -Original Message- From: Michael P. Morris [mailto:[EMAIL PROTECTED]] Sent: Friday, July 07, 2000 8:03 AM To: [EMAIL PROTECTED] Subject: Re: Session Management >From the teamallaire tutuorials. http://www.teamallaire.com/tutorials/ How do I kill

RE: Session Management

2000-07-07 Thread Conrad, Christopher
Message- > From: Matt Rodosky [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, July 06, 2000 4:07 PM > To: [EMAIL PROTECTED] > Subject: Session Management > > Is it possible to terminate a session when a user closes their browser?? > Its > easy when a user logs out, or

Re: Session Management

2000-07-07 Thread Julie McKellar
Forget where I got this frombut it works. Place it in the Application.cfm Julie -Original Message- From: Conrad, Christopher <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Friday, July 07, 2000 3:50 PM Subject: RE: Session Manag

Re: session management

2000-07-14 Thread Nrhorwitz
The SessionTimeOut and ApplicationTimeout has a 1 day before they can kill the variables. That's what I think where the problem is. Rob << Hey all, I am having a serious session management problem. Here is my cfapplication tag ... When I was working with the appli

RE: session management

2000-07-14 Thread Cameron Childress
day, July 14, 2000 9:55 AM > To: Cf-Talk > Subject: session management > > > Hey all, > > I am having a serious session management problem. Here is my > cfapplication > tag ... > >SESSIONMANAGEMENT="Yes" > SESSIONTIMEOUT="#CreateTim

RE: session management

2000-07-14 Thread Tim Bahlke
. 336.230.0083 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, July 14, 2000 10:10 AM To: [EMAIL PROTECTED] Subject: Re: session management The SessionTimeOut and ApplicationTimeout has a 1 day before they can kill the variables. That's what I think wher

RE: session management

2000-07-14 Thread Dan Haley
won't do is clean up shopping carts that have been abandoned by people who don't return. HTH, Dan -Original Message- From: Tim Bahlke [mailto:[EMAIL PROTECTED]] Sent: Friday, July 14, 2000 6:55 AM To: Cf-Talk Subject: session management Hey all, I am having a serious session m

Re: session management

2000-07-14 Thread Bud
the clock on the server stopped while it was shut down. :) Are you sure you didn't set the cart as client.cart instead of session.cart (or whatever)? Does anyone know if clientmanagement is enabled by default? Or must it be set as "YES" in cfapplication. >Rob > > ><

Session Management question

2000-07-14 Thread Craig A. Zingerline
Hello, I have an application that allows a user to log in, and once authenticated and logged in, their accountID is pulled from the database table and is set in a session variable. From this, I want to display a welcome message saying something like 'Hello, [contact name], you receive a [discoun

Custom session management

2000-07-18 Thread Bryan Batchelder
palm and = can be used as a number to key a session off of. Can anyone give me any pointers to creating a session management system that is as easy to use as the native CF sessions? My current thinking is along these lines: 1. User logs in, DeviceID is sent and

RE: session management

2001-03-28 Thread Bryan Love
Thongvanh [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 28, 2001 11:24 AM To: CF-Talk Subject: session management anyone seen a good article online about session management? I've tried a few common places. had trouble finding one even on sys-con.com. s

Re: Session Management

2004-11-02 Thread Chad McCue
e" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, November 02, 2004 10:11 AM Subject: Session Management > I am looking for a tag or script that will allow a user to continue their session when it has expired due to their lack of using the site. I

RE: Session Management

2004-11-02 Thread Tangorre, Michael
> From: Chad McCue [mailto:[EMAIL PROTECTED] > Sent: Tuesday, November 02, 2004 1:57 PM > Subject: Re: Session Management > I am looking for a tag or script that will allow a user to > continue their session when it has expired due to their lack > of using the site. I have l

Re: Session Management

2004-11-02 Thread Ben Doom
You could a) increase the session timeout b) use client scope note that if you use client scope, you can't store complex variables there (like queries or structures). --Ben Chad McCue wrote: > I am looking for a tag or script that will allow a user to continue their session > when it has expir

RE: Session Management

2004-11-02 Thread Dawson, Michael
] Sent: Tuesday, November 02, 2004 9:12 AM To: CF-Talk Subject: Session Management I am looking for a tag or script that will allow a user to continue their session when it has expired due to their lack of using the site. I have looked at cfdev.com and checked out theirs, but it doesn't seem to

Re: Session Management

2004-11-02 Thread Mike Kear
Michael, does this mean if a logged-in user goes off to lunch without logging out, their machine is still logged in (in effect) all day (if it's a long lunch with the sales department booze-heads) or even all night too? Isn't that a security risk? Cheers Mike Kear Windsor, NSW, Australia AFP Web

RE: Session Management

2004-11-03 Thread Dawson, Michael
However, I have been considering adding a timeout so that users must log back in when their sessions expire. It would sure make my coding much easier. BTW, all the boozers our in our IT dept. ;-) _ From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: Tue 11/2/2004 9:30 PM To: CF-Talk Subje

RE: Session Management

2004-11-03 Thread Lawrence Ng
hello there, at our college, we made it a policy to have the sessions for our portal appllcation expire after 3 minutes of inactivity. This is to address security and privacy issues. Portal built using PHP and implemented Novell's iChain for single signon ability across any applications that invol

RE: Session Management

2004-11-04 Thread Dawson, Michael
Three minutes! Wow! There are a lot of people at our school that can't enter their home address in three minutes. ;-) -Original Message- From: Lawrence Ng [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 03, 2004 10:21 AM To: CF-Talk Subject: RE: Session Management hello

Frames and Session Management

2000-08-08 Thread Robert Everland
Is it impossible to have cookieless sessions in frames or is it becuase I could be doing something wrong or is there a workaround. I have asked this question for over a month now. Does anyone know? Dave? Robert Everland III Web Developer Dixon Ticonderoga ---

RE: Session Management Errors

2000-08-08 Thread Scott J. Brader
bject: Session Management Errors Hi I have an Application.cfm file with this code: That generates the following error: Attempt to access a Session variable when session management is not enabled. Use the CFAPPLICATION tag to enable session management. Note: This feature may have

CFMX Session Management Question

2002-07-29 Thread Bill Brown
I looked through the archives (search ain't quite right yet), the MM forums (as best as one can), the documentation, and even the LiveDocs but I can't find the answer to the following question. Does the J2EE session framework through jsessionid persist across servers? I know that that was the pro

RE: RE: Session Management

2000-07-07 Thread joeug
Hi, If you are using CF session management, i think you could still use Maybe have a LogOff button and direct them to a template, where you delete your session variables and log off the user. StructClear(Session) has never worked for me on CF4.5, just messes up the session. Any ideas

Re: RE: Session Management

2000-07-07 Thread Erki Esken
> StructClear(Session) has never worked for me on CF4.5, just > messes up the session. > > Any ideas? See Allaire Knowledge Base article #14143: http://www.allaire.com/handlers/index.cfm?ID=14143&Method=Full Erki --

Re: Session Management question

2000-07-14 Thread Todd Ashworth
sage - From: "Craig A. Zingerline" <[EMAIL PROTECTED]> To: "cf-talk" <[EMAIL PROTECTED]> Sent: Friday, July 14, 2000 2:48 PM Subject: Session Management question | Hello, | | I have an application that allows a user to log in, and once authenticated | and logged in, th

RE: Session Management question

2000-07-17 Thread Craig A. Zingerline
08.647.5151 Fax: 508.647.5150 -Original Message- From: Todd Ashworth [mailto:[EMAIL PROTECTED]] Sent: Friday, July 14, 2000 4:51 PM To: [EMAIL PROTECTED] Subject: Re: Session Management question I'm not 100% sure I understand your question. If their Session variable is a fie

session management help please

2004-01-13 Thread Seth Skager
I'm writing my first application. I will be useing a secure section on my site you need to login to. I can set up a logout linkto end a session. I can end a session if the user closes the browser. my question is, is there a way to kill or end the session if the user navigates outside of my domain?

Re: Frames and Session Management

2000-08-08 Thread Al Musella, DPM
No problem at all. All links need to pass an id. To make sure users don't fiddle with it, I send a userID and a unique id (CreateUUID()).. then in the application.cfm, I check if the userid and unique ID match. If not they get bumped out to the login page again. I use that technique on u

Re: CFMX Session Management Question

2002-07-29 Thread Sean A Corfield
On Monday, July 29, 2002, at 01:25 , Bill Brown wrote: > Does the J2EE session framework through jsessionid persist across > servers? I know that that was the problem with using the session scope > in prior versions of CF. I also know that I could use the client scope, > but I'm not a big fan of t

RE: CFMX Session Management Question

2002-07-29 Thread Chris Kief
On Monday, July 29, 2002, at 01:25 , Bill Brown wrote: > Does the J2EE session framework through jsessionid persist across > servers? I know that that was the problem with using the session scope > in prior versions of CF. I also know that I could use the client scope, > but I'm not a big fan of t

RE: session management help please

2004-01-17 Thread NANCY SKAGER
As there is no responce to my original question, am i to determine that this either can not be done, or it is just that nobody on this list knows the answer? Rino >From: Seth Skager <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Sub

RE: session management help please

2004-01-17 Thread Jim Gurfein
> >Reply-To: [EMAIL PROTECTED] > >To: CF-Talk <[EMAIL PROTECTED]> > >Subject: session management help please > >Date: Tue, 13 Jan 2004 20:30:34 -0800 (PST) > > > >I'm writing my first application. I will be useing a > >secure section on my si

Re: session management help please

2004-01-17 Thread ColdFusion
t;[EMAIL PROTECTED]>   >Subject: session management help please   >Date: Tue, 13 Jan 2004 20:30:34 -0800 (PST)   >   >I'm writing my first application. I will be useing a   >secure section on my site you need to login to. I can   >set up a logout linkto end a session. I

Re: session management help please

2004-01-17 Thread Jochem van Dieten
NANCY SKAGER wrote: > As there is no responce to my original question, am i to determine that this > either can not be done, or it is just that nobody on this list knows the > answer? It can not be done reliably. It would require sending a message from the browser to the server the moment the

Re: session management help please

2004-01-17 Thread ColdFusion
:14 PM     Subject: RE: session management help please     As there is no responce to my original question, am i to determine that this     either can not be done, or it is just that nobody on this list knows the     answer?     Rino     >From: Seth Skager <[EMAIL PROTECTED]>    

Re: session management help please

2004-01-17 Thread NANCY SKAGER
Thank you so much... I thought that this was going to be the only way to pull this off. I guess at any rate I can add this to the macormedia wish list for the next version of coldfusion. Macormedia really needs to add a new and better tags for session management. ROFLMAO... If I was a

Re: session management help please

2004-01-17 Thread Jochem van Dieten
ColdFusion wrote: > Nevermind answered too soon. If there was a way to determine > where the user was going, you could using the OnUnload event > however not sure you can determine that. Naturally I don't know about you, but the prefs.js configuration file of my Firebird profile has the followin

Re: session management help please

2004-01-17 Thread Jochem van Dieten
NANCY SKAGER wrote: > Thank you so much... I thought that this was going to be the only way to > pull this off. I guess at any rate I can add this to the macormedia wish > list for the next version of coldfusion. Macormedia really needs to add a > new and better tags for sessio

Re: session management help please

2004-01-17 Thread Bob Haroche
I'm wondering why Nancy wants to end session variables in the way she describes. Perhaps there are other ways of achieving her goal. For example, perhaps a clunky one, she could set very short lived session variables and refresh them on each page request for another very short period of time. When

RE: session management help please

2004-01-17 Thread Mike Brunt
11:42 AM To: CF-Talk Subject: Re: session management help please NANCY SKAGER wrote: > Thank you so much... I thought that this was going to be the only way to > pull this off. I guess at any rate I can add this to the macormedia wish > list for the next version of coldfusion. Macormed

RE: session management help please

2004-01-17 Thread Dave Watts
> > I'm writing my first application. I will be useing a > > secure section on my site you need to login to. I can > > set up a logout linkto end a session. I can end a > > session if the user closes the browser. my question > > is, is there a way to kill or end the session if the > > user navigate

Re: session management help please

2004-01-17 Thread NANCY SKAGER
albe to end a session if a user surfs away form the site. Any thoughts on this? thanks; Rino >From: "Bob Haroche" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: Re: session management help please >Date: Sat, 17 Jan 200

RE: session management help please

2004-01-18 Thread Peter Tilbrook
Thank you so much... I thought that this was going to be the only way to pull this off. I guess at any rate I can add this to the macormedia wish list for the next version of coldfusion. Macormedia really needs to add a new and better tags for session management. ROFLMAO... If I was a better

Re: session management help please

2004-01-18 Thread walker
the site. Any thoughts on >this? > >thanks; >Rino > > >From: "Bob Haroche" <[EMAIL PROTECTED]> > >Reply-To: [EMAIL PROTECTED] > >To: CF-Talk <[EMAIL PROTECTED]> > >Subject: Re: session management help please > >Date: Sat, 17 Jan 2004 12:33

RE: session management help please

2004-01-18 Thread Dave Watts
> You can check the HTTP_REFERER to see if they came from your > domain or somewhere else > > So if they come in from anywhere outside of your domain, you > can make them log in. It's worth pointing out that as HTTP_REFERER is provided by the browser, it cannot be relied upon to be correct

RE: session management help please

2004-01-18 Thread Dave Watts
> the reason I would like to end sessions in thos way is the > fact that a certain page on the site will have a chatroom > on it. A user can spend a unknown amount of time there, then > either surf to other sections of the site, of surf somewhere > else. if the person does leave the site and th

RE: session management help please

2004-01-18 Thread NANCY SKAGER
Finally it comes to this As an old time chatter myself, I know from experiance, that when you log into a chatroom you can be there anywhere from 5 minutes to a couple of hours. This is the only thing messing with my session management. As I states earlier, I would like to add a who&#

RE: session management help please

2004-01-18 Thread Dave Watts
> As an old time chatter myself, I know from experiance, that > when you log into a chatroom you can be there anywhere from > 5 minutes to a couple of hours. This is the only thing messing > with my session management. As I states earlier, I would like > to add a who's onli

RE: session management help please

2004-01-18 Thread NANCY SKAGER
Thanks for your input Dave. This is my first time at writing a community, so the chat page lost me. I was trying s hard to think about how to end session management in the case of surfing somewhere else I missed what we call in my graphic design background the "Elegant Simplicity&

Re: session management help please

2004-01-19 Thread Jim McAtee
- Original Message - From: "NANCY SKAGER" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, January 18, 2004 8:15 PM Subject: RE: session management help please > Finally it comes to this > > As an old time chatter myself,

Re: session management help please

2004-01-19 Thread NANCY SKAGER
I see what you mean... Thanks for the insite Jim Thanks; Rino >From: "Jim McAtee" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: Re: session management help please >Date: Mon, 19 Jan 2004 01:52:18 -0700 > >

need help w/ session management

2000-11-15 Thread Jesse
I'm basically just trying to create an application that requires login. depending on what id is used to log in with will depend on what pages that person can view and what fields in a shared database they will have access to view and or update. I'm still a newbie and use 3 different coldfusion boo

Application.cfm, Session Management...More Info.

2001-02-16 Thread Ken McInnes
Sorry Everyone, I had trouble posting to the list at first and some of the message got stripped when I did the ole cut and paste... Here is the error message and the application.cfm. No they are not going through a proxy and the Cold Fusion pages are being hosted in a shared environment (just t

another newbie confused about session management

2000-08-11 Thread Terri Stocke
Hi! I've been reading the posts on session management, and sadly, I am still utterly confused. What compounds my confusion is the fact that I am using session management in conjunction with an Oracle stored procedure. I must admit, I'm over my head here--BIG time. Scenario: I ha

Finding a good Session management system.

2002-07-22 Thread Adams, Stephen
** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ** Hi, I have been building CF sites for a while now and I am always finding mys

Re: need help w/ session management

2000-11-15 Thread Tammy Schilling
Session management was the hardest thing for me to get, too. None of the CF books seem to cover it very well. The one that I found the "most" helpful was CFDummies book. Some people are too proud to use those books, but it was better than the others on that subject. Do you

Re: need help w/ session management

2000-11-15 Thread Justin Scott
Would it help if someone wrote a tutorial covering several different ways to handle session management stuff? I'd thought about doing this on more than one occasion, but I didn't know if it was something that would be useful in the CF community or not. If anyone is willing, e-mail me

Re: need help w/ session management

2000-11-16 Thread Greg Wolfinger
cfvault.com put out a nice article on this last month i believe. Greg - Original Message - From: Jesse <[EMAIL PROTECTED]> Newsgroups: cf-talk To: CF-Talk <[EMAIL PROTECTED]> Sent: Wednesday, November 15, 2000 3:09 PM Subject: need help w/ session management > I'm b

Session Management and Closing the Browser

2000-12-01 Thread Mark Johnson
I know that you can cause a person's session to end when the quit their browser using code such as. http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?

Problem with IE and session management

2000-12-19 Thread Johan Coens
Hello all, I've got a serious problem with IE and my applications. I've build a maintenance system running on my server at a subdirectory located in the wwwroot. The application which uses the content from the maintenancesystem is located in another subdirectory in the wwwroot. Both applications

(OT:ASP) State / Session Management on ASP

2001-04-25 Thread Eric Dawson
so this guy says to me it will take 10 days development to build a session management addition to be able to have sessions traverse multiple servers which connect to a backend SQL server database. Correct me where I am wrong. CF does this natively, and also there are addons to do this as well

RE: Application.cfm, Session Management...More Info.

2001-02-20 Thread Maia, Eric
cookies only), and if cookies are disabled but "session" cookies are enabled, session management fails in my application. It seems like the browser sets the cookies OK on the first request, so my app quits using the URL tokens. Then on a subsequent request, the cookie disappears and the ses

Help with authorise/authenticate/session management

2001-08-19 Thread Mike Kear
I have a problem with a site I am working on for a client. I am stuck with hosting it at Shanje.com for a variety of reasons that are outside the scope of this discussion, but I have a big problem setting up a user access/authenticate/session management system. Shanje don't allow c

RE: Finding a good Session management system.

2002-07-22 Thread John McCosker
Don't use session variables, but use cookies which maintain session state when the browser is open and deleted when closed. -Original Message- From: Adams, Stephen [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 1:54 PM To: CF-Talk Subject: Finding a good Session management s

RE: Finding a good Session management system.

2002-07-22 Thread todd
te when the browser is open > and deleted when closed. > > -Original Message- > From: Adams, Stephen [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 22, 2002 1:54 PM > To: CF-Talk > Subject: Finding a good Session management system. > > > *

Re: Finding a good Session management system.

2002-07-22 Thread Stephen Moretti
ich maintain session state when the browser is open > and deleted when closed. > > -Original Message- > From: Adams, Stephen [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 22, 2002 1:54 PM > To: CF-Talk > Su

RE: Finding a good Session management system.

2002-07-22 Thread Adams, Stephen
next one is going to be a large intranet with a lot of personalisation. Oh I love web-rat.com by the way, great site. Stephen > -- > From: [EMAIL PROTECTED][SMTP:[EMAIL PROTECTED]] > Sent: 22 July 2002 14:10 > To: CF-Talk > Subject: RE: Finding a goo

RE: Finding a good Session management system.

2002-07-22 Thread John McCosker
Monday, July 22, 2002 2:10 PM To: CF-Talk Subject: RE: Finding a good Session management system. That was a pretty vague and not very helpful answer John. Stephen, what all are you storing in session variables? Could you describe your application a little more? I've always tried to

RE: Finding a good Session management system.

2002-07-22 Thread Adams, Stephen
what you talking about. Stephen > -- > From: Stephen Moretti[SMTP:[EMAIL PROTECTED]] > Sent: 22 July 2002 14:31 > To: CF-Talk > Subject: Re: Finding a good Session management system. > > Bah Humbug > > Use Client variables Just

RE: Finding a good Session management system.

2002-07-22 Thread todd
s of code and does not add > loads of > >>time to the running of my applications, > > > > > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 22, 2002 2:10 PM > To: CF-Talk > Subject: RE: Finding a good Session mana

RE: Finding a good Session management system.

2002-07-22 Thread Michael Ross
-Original Message- From: Adams, Stephen [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 1:54 PM To: CF-Talk Subject: Finding a good Session management system. ** WESTMINSTER CITY COUNCIL Please refer to th

RE: Finding a good Session management system.

2002-07-22 Thread todd
Stephen, perhaps shoving everything into the variable scope isn't what you need then. If you're going from form to form, it wouldn't be that hard to loop around the form.fieldnames to set hidden form fields onto the next page to continue to pass on that information. I have a similiar applica

Re: Finding a good Session management system.

2002-07-22 Thread Stephen Moretti
> > I like you idea have you got a small example of this so I can see exatly > what you talking about. > Yup #request.sessionvar.userid# Hope that helps... Stephen __ Get the mailserver that powers

RE: Finding a good Session management system.

2002-07-22 Thread Adams, Stephen
oretti[SMTP:[EMAIL PROTECTED]] > Sent: 22 July 2002 14:59 > To: CF-Talk > Subject: Re: Finding a good Session management system. > > > > > I like you idea have you got a small example of this so I can see exatly > >

RE: Finding a good Session management system.

2002-07-22 Thread S . Isaac Dealey
> Wasn't a flame -- just a statement. > ~Todd >> So.. my advice to you is to do a (proper locks >> around of course) and take a good hard look at what really should / >> shouldn't be there. >> >> ~Todd I worked for a while at an education-management company ( they manage k-12 schools for peopl

RE: Finding a good Session management system.

2002-07-22 Thread todd
On Mon, 22 Jul 2002, S. Isaac Dealey wrote: > > I worked for a while at an education-management company ( they manage k-12 > schools for people who own / operate them, but don't know what they're doing > :) where I found username and password (among other things) in a dump of the > session struct

RE: Finding a good Session management system.

2002-07-22 Thread Robert Everland
I Web Developer Extraordinaire Dixon Ticonderoga Company http://www.dixonusa.com -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 10:14 AM To: CF-Talk Subject: RE: Finding a good Session management system. > Wasn't a flame -- jus

Re: Finding a good Session management system.

2002-07-22 Thread S . Isaac Dealey
rt in the middle of the page obviously terminates page processing, but it's sometimes easy to forget that you have important session management going on further down the page in the onrequestend.cfm that won't occur if you don't cfinclude it before you abort the page. Is

RE: Finding a good Session management system.

2002-07-22 Thread todd
> http://www.dixonusa.com > > -Original Message- > From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 22, 2002 10:14 AM > To: CF-Talk > Subject: RE: Finding a good Session management system. > > > > Wasn't a flame -- just a sta

Re: Finding a good Session management system.

2002-07-22 Thread Bill Wheatley
Message - From: "Stephen Moretti" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, July 22, 2002 9:31 AM Subject: Re: Finding a good Session management system. > Bah Humbug > > Use Client variables Just don't forget t

RE: Finding a good Session management system.

2002-07-22 Thread Cornillon, Matthieu
July 22, 2002 9:30 AM To: CF-Talk Subject: RE: Finding a good Session management system. ** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ***

RE: Finding a good Session management system.

2002-07-22 Thread Eugene, Joseph
] [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 10:30 AM To: CF-Talk Subject: Re: Finding a good Session management system. Use client variables if they are going to be less then 32k (i think it was) or you will mess up your client variable storage and have to rebuild them. Bill Wheatley

RE: Finding a good Session management system.

2002-07-22 Thread Cornillon, Matthieu
Todd, What is "session corruption/leak"? I'm worried. :) Matthieu -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 10:21 AM To: CF-Talk Subject: RE: Finding a good Session management system. Nothing wrong with session

Re: Finding a good Session management system.

2002-07-22 Thread S . Isaac Dealey
> Use client variables if they are going to be less then 32k (i think it > was) or you will mess up your client variable storage and have to rebuild them. Who stores more than 32k in a persistent scope variable? ... Isaac Dealey www.turnkey.to 954-776-0046 ___

RE: Finding a good Session management system.

2002-07-22 Thread Adams, Stephen
I was interested in hearing about. > -- > From: Cornillon, Matthieu[SMTP:[EMAIL PROTECTED]] > Sent: 22 July 2002 15:36 > To: CF-Talk > Subject: RE: Finding a good Session management system. > > Stephen, > > I am not going to commen

RE: Finding a good Session management system.

2002-07-22 Thread S . Isaac Dealey
> On Mon, 22 Jul 2002, S. Isaac Dealey wrote: >> >> I worked for a while at an education-management company ( they manage >> k-12 schools for people who own / operate them, but don't know what >> they're doing :) where I found username and password (among other >> things) in a dump of the session

  1   2   >