Re: How to expire session variables?

2002-03-26 Thread Bud
On 3/26/02, Jeffry Houser penned: As a general note, that will only make session variables expire if they are inactive for 10 minutes. I presumed that's what he wanted. -- Bud Schneehagen - Tropical Web Creations _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ ColdFusion Solutions / eCommerce

Re: How to expire session variables?

2002-03-26 Thread Jeffry Houser
At 07:33 AM 3/26/2002 -0500, you wrote: On 3/26/02, Jeffry Houser penned: As a general note, that will only make session variables expire if they are inactive for 10 minutes. I presumed that's what he wanted. But it wasn't what he asked for. ;) -- Jeffry Houser | mailto:[EMAIL

Re: How to expire session variables?

2002-03-26 Thread Alex
set the sessio timeout to 10 minutes On Mon, 25 Mar 2002 [EMAIL PROTECTED] wrote: Is there a good way to consistently make sessions expire within a 10 min period? __ Get the mailserver that powers this list at

Re: How to expire session variables?

2002-03-26 Thread Bud
On 3/26/02, Jeffry Houser penned: I presumed that's what he wanted. But it wasn't what he asked for. ;) He said: Is there a good way to consistently make sessions expire within a 10 min period?. That could mean what I thought it meant or what you thought it meant. Guess we won't know

How to expire session variables?

2002-03-25 Thread one
Is there a good way to consistently make sessions expire within a 10 min period? __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

Re: Whats the best way to expire session variables when browser not closed?

2002-03-23 Thread one
Hi, I'm having a problem using session variables. They are set to time out at 120 (2 hours). However if someone does NOT close his browser and then they try to come back to the site after a couple of hours, they get an error message. Is there a way to flush and totally expire session variables

RE: Whats the best way to expire session variables when browser not closed?

2002-03-23 Thread Joseph DeVore
the session variables in. HTH, Joseph DeVore VeloxWeb Technologies -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 23, 2002 11:41 AM To: CF-Talk Subject: Re: Whats the best way to expire session variables when browser not closed? Hi, I'm having

Re: Whats the best way to expire session variables when browser not closed?

2002-03-23 Thread one
to expire session variables when browser not closed? Pardeep, One way you could accomplish this task is to add code like this to your Application.cfm file. cfif not isdefined('session.info') cflocation url=setSessionVarsTemplate.cfm /cfif Any time the session information isn't available

RE: Whats the best way to expire session variables when browser n ot closed?

2002-03-23 Thread Dave Watts
sessionmanagement=yes But ding dang dong, its still not working:( Any ideas? This code isn't a good idea. You want your CFAPPLICATION tag to be the same for every page within the application, no matter what. Hi, I'm having a problem using session variables. They are set to time out at 120 (2 hours

Session variables don't exist after moving a site to CF5

2002-03-20 Thread Stephen Adams
HI, I have just moved a site from a CF4.5 machine to a CF5 machine, and I found that the session.sessionID variable does not get created or cannot be found. I have checked all the settings in CF5, but I can't see why they wouldn't exist. Does anyone know why a session variables disappear

deleting session variables when browser is closed

2002-03-20 Thread Douglas Jordon
I seem to remember that once upon a time code was posted to delete a session variable in Application.cfm when the browser is closed. Can someone post that code? Thnx, Doug Jordon __ Get the mailserver that powers this list

RE: deleting session variables when browser is closed

2002-03-20 Thread Bryan Love
session variables are automatically deleted when the browser is closed. That is their nature. +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst Telecommunication Systems [EMAIL PROTECTED

Re: deleting session variables when browser is closed

2002-03-20 Thread Douglas Jordon
OK. Then is there a reason why they might not? I can close all windows, relaunch the browser and there they are. Bryan Love wrote: session variables are automatically deleted when the browser is closed. That is their nature

RE: deleting session variables when browser is closed

2002-03-20 Thread Shawn Regan
:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 1:15 PM To: CF-Talk Subject: deleting session variables when browser is closed I seem to remember that once upon a time code was posted to delete a session variable in Application.cfm when the browser is closed. Can someone post that code? Thnx

RE: deleting session variables when browser is closed

2002-03-20 Thread Dave Watts
session variables are automatically deleted when the browser is closed. That is their nature. No, they're not. The server doesn't know when the browser is closed. It only knows that some period has passed since the last request from that browser. Also, by default, the cookies created by CF

RE: deleting session variables when browser is closed

2002-03-20 Thread Brunt, Michael
]] Sent: Wednesday, March 20, 2002 1:24 PM To: CF-Talk Subject: Re: deleting session variables when browser is closed OK. Then is there a reason why they might not? I can close all windows, relaunch the browser and there they are. Bryan Love wrote: session variables are automatically deleted when

RE: deleting session variables when browser is closed

2002-03-20 Thread Mike Chambers
: Wednesday, March 20, 2002 4:18 PM To: CF-Talk Subject: RE: deleting session variables when browser is closed session variables are automatically deleted when the browser is closed. That is their nature. +---+ Bryan Love Macromedia Certified

Re: deleting session variables when browser is closed

2002-03-20 Thread Douglas Jordon
Message- From: Douglas Jordon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 1:15 PM To: CF-Talk Subject: deleting session variables when browser is closed I seem to remember that once upon a time code was posted to delete a session variable in Application.cfm when

Re: RE: deleting session variables when browser is closed

2002-03-20 Thread ksuh
Umm, no. - Original Message - From: Bryan Love [EMAIL PROTECTED] Date: Wednesday, March 20, 2002 2:17 pm Subject: RE: deleting session variables when browser is closed session variables are automatically deleted when the browser is closed.That is their nature

RE: deleting session variables when browser is closed

2002-03-20 Thread Bryan Love
: Wednesday, March 20, 2002 1:33 PM To: CF-Talk Subject: Re: deleting session variables when browser is closed thankee kindly Shawn Regan wrote: cfif IsDefined(Cookie.CFID) AND IsDefined(Cookie.CFTOKEN) cfset cfid_local = Cookie.CFID cfset cftoken_local = Cookie.CFTOKEN cfcookie name=CFID value

Re: RE: deleting session variables when browser is closed

2002-03-20 Thread ksuh
Love [EMAIL PROTECTED] Date: Wednesday, March 20, 2002 3:18 pm Subject: RE: deleting session variables when browser is closed Very well then. In your CFapplication tag set the attribute setClientCookies to NO. That way the CFID and CFTOKEN are stored in the session struct and when

RE: deleting session variables when browser is closed

2002-03-20 Thread Matt Robertson
Crisis -Original Message- From: Douglas Jordon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 1:33 PM To: CF-Talk Subject: Re: deleting session variables when browser is closed thankee kindly Shawn Regan wrote: cfif IsDefined(Cookie.CFID) AND IsDefined(Cookie.CFTOKEN) cfset

RE: RE: deleting session variables when browser is closed

2002-03-20 Thread Bryan Love
there...). I must admit I haven't used session variables for years and some of my previous assumptions that I thought were true are faulty. Thanks for straightening me out! +---+ Bryan Love Macromedia Certified Professional Internet Application

RE: deleting session variables when browser is closed

2002-03-20 Thread Dave Watts
then put this just below the CFAPPLICATION tag: cfcookie name=CFID value=#cookie.cfid# cfcookie name=CFTOKEN value=#cookie.cftoken# Unfortunately, it's not as simple as that. For Session variables to work, they have to be stored in memory on the CF Server, along with the CFID and CFTOKEN identifiers

RE: RE: deleting session variables when browser is closed

2002-03-20 Thread Dave Watts
The cfid and cftoken are stored in the session struct however (but I don't know what they are doing there...). CF has to store the CFID and CFTOKEN values, and compare them against those received from the browser to determine if those are your session variables. Dave Watts, CTO, Fig Leaf

Re: RE: deleting session variables when browser is closed

2002-03-20 Thread Douglas Brown
, March 20, 2002 4:23 PM Subject: RE: RE: deleting session variables when browser is closed The cfid and cftoken are stored in the session struct however (but I don't know what they are doing there...). CF has to store the CFID and CFTOKEN values, and compare them against those received from

RE: RE: deleting session variables when browser is closed

2002-03-20 Thread Bryan Love
] +---+ ...'If there must be trouble, let it be in my day, that my child may have peace'... - Thomas Paine, The American Crisis -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 4:24 PM To: CF-Talk Subject: RE: RE: deleting session variables when browser

Locking and session variables

2002-03-19 Thread Mark A. Kruger - CFG
Everyone - please note the new thread name (we long ago left UDFs). Dave, you wrote: However, it's been my experience that, in most cases, this doesn't work very well in the real world. Copying the entire scope into a local variable is very expensive, and causes problems under load. We actually

RE: session variables and multiple servers

2002-03-15 Thread Lon Lentz
-Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 8:29 PM To: CF-Talk Subject: session variables and multiple servers We just changed our website from one being on one server to being on 3 redundant web servers. The problem is, the web farm

RE: session variables and multiple servers

2002-03-15 Thread Lon Lentz
Have you guys given thought to real time load management? Which would keep users on the machine they log into? -Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 8:29 PM To: CF-Talk Subject: session variables and multiple servers We just

session variables and multiple servers

2002-03-14 Thread S R
areas on the site every 15 minutes. How can I make session variables span across all three servers? Or should I look into other solutions? Thank sal _ Send and receive Hotmail on your mobile device: http://mobile.msn.com

Re: session variables and multiple servers

2002-03-14 Thread David Schmidt
Use client variables in a database and share the database between servers as their client storage. - Original Message - From: S R [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 14, 2002 5:28 PM Subject: session variables and multiple servers We just changed our

RE: session variables and multiple servers

2002-03-14 Thread Garza, Jeff
Since Session variables reside in memory on each individual server, they can't be shared across a cluster. What you'll need to do is use client variables instead and store them in a shared datasource. This way all the servers have access to the same information. On a side note, I can't

Re: session variables and multiple servers

2002-03-14 Thread David Schmidt
. Just shortens up the keystrokes :) - Original Message - From: Garza, Jeff [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 14, 2002 5:44 PM Subject: RE: session variables and multiple servers Since Session variables reside in memory on each individual server

RE: session variables and multiple servers

2002-03-14 Thread Chuck McElwee
To: CF-Talk Subject: RE: session variables and multiple servers Since Session variables reside in memory on each individual server, they can't be shared across a cluster. What you'll need to do is use client variables instead and store them in a shared datasource. This way all the servers have

Crossed Session Variables - many users with same User

2002-02-27 Thread Paul Sizemore
On an Intranet, my users are getting crossed session variables. I would appreciate any ideas as to what I can do about this. I've got a lot of users that are logging on to our NT domain with the same log in (but different static IP addresses) - requirements changed during development

RE: Session variables and Switching to Another Domain

2002-02-26 Thread Dave Watts
information - shopping cart, user parameters, login information, etc. in session variables on www.server1.com. However, during checkout when I send the user to the other domain, commerce.server1.com, I will lose this session variables and all the shopping cart and login information

Session variables and Switching to Another Domain

2002-02-21 Thread Dimo Michailov
information - shopping cart, user parameters, login information, etc. in session variables on www.server1.com. However, during checkout when I send the user to the other domain, commerce.server1.com, I will lose this session variables and all the shopping cart and login information for the user. Can

RE: Session variables and Switching to Another Domain

2002-02-21 Thread Steven Salter
=#session.customerid#. For that matter, pass the referenceid as well to get everything. -Steve -Original Message- From: Dimo Michailov [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 13, 2002 9:51 AM To: CF-Talk Subject: Session variables and Switching to Another Domain Hello all: I am

disappearing session variables

2002-02-04 Thread c talk
Hi all I'm using IE 5 and Nestcape 4.72 to develop a site for a client. I sometimes experience this error: Error resolving parameter BSESSION.PRODUCT_LINE/BPPThe session variable PRODUCT_LINE does not exist. This session.variable is defined and called on the site's home page. It's called

RE: disappearing session variables

2002-02-04 Thread Lon Lentz
Is Netscape issuing a new cookie on the second page because it thinks that the domain has changed? -Original Message- From: c talk [mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 4:16 PM To: CF-Talk Subject: disappearing session variables snip When I browse

RE: disappearing session variables

2002-02-04 Thread c talk
[mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 4:16 PM To: CF-Talk Subject: disappearing session variables snip When I browse this site on my laptop/dev server using it's IP address (192.168.x.x), the site runs ok in IE, but chokes on the 2nd page in Netscape. It works

RE: disappearing session variables

2002-02-04 Thread Lon Lentz
Sorry, sloppy use of words. I once had a problem with dying session variables and found that NS was showing a new set of cookies. Apparently when the reference changes, NS does not see it as being in the same domain and does not send the cookies it set for the previous page. CF sees

RE: disappearing session variables

2002-02-04 Thread Christopher Olive
[mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 4:16 PM To: CF-Talk Subject: disappearing session variables Hi all I'm using IE 5 and Nestcape 4.72 to develop a site for a client. I sometimes experience this error: Error resolving parameter BSESSION.PRODUCT_LINE/BPPThe session variable

session variables expires prematurely

2002-02-04 Thread han peng
hi ppl... i remember seeing this somewhere.. abt setting a around the time span or wat.. but i tried both ways.. with and without the quotes.. still cant work.. is there any setting to be done at SERVER administration side..?? cheers han

RE: session variables expires prematurely

2002-02-04 Thread Andy Parry
Han, this works in a CFApplication tag: SESSIONTIMEOUT=#CreateTimeSpan(1,0,0,0)# hi ppl... i remember seeing this somewhere.. abt setting a around the time span or wat.. but i tried both ways.. with and without the quotes.. still cant work.. is there any setting to be done at SERVER

Re: session variables expires prematurely

2002-02-04 Thread Joseph Thompson
When you say prematurely I start to think that perhaps the adminsistrator has set (kept) the default at 20 minutes and you are trying to extend that? If have access to teh administrator it is simple to crank that up. If you don't there are a few hacks available. I borrowed the idea of

IE 5 and session variables

2002-01-24 Thread Jennifer Knoblock
Is there something weird about how IE 5 handles session variables/cookies? I created a password-protected site that uses session variables to keep track of what folks have access to after they login, but users with IE 5.0 keep having problems. The nice folks at Figleaf gave me a little app

Session variables

2002-01-21 Thread Waldemiro Junior
Hello again folks.. Something weird is happening and I don´t know how to solve it, or maybe I´m doing something wrong... I believe that when I close my browser all those session variables must be killed, but when I open another browser window (it´s not a new window function) the values

RE: Session variables

2002-01-21 Thread Steve Oliver
This is because sessions are tracked by cookies. If you want the session variables to be killed upon closing your browser window then set the cookies for them. If you put No expiration date, then the cookie will be a session cookie, and will expire when the browser is closed :) cfcookie name

RE: Session variables

2002-01-21 Thread Declan Maher
Coldfusion is not like ASP in that session variables are not killed when the browser is closed. YOu can also kill session vars by creating a page with this code and opening it in your browser. cfscript StructClear(session); /cfscript cfscript StructClear(application); /cfscript

Re: cf and cgi session variables compatibility

2002-01-16 Thread loic jegouzo
-Talk [EMAIL PROTECTED] Sent: Wednesday, January 09, 2002 4:18 PM Subject: RE: cf and cgi session variables compatibility Session variables in CF are not automatically passed along to either CGI or ASP scripts. ASP scripts in particular have a Session scope, but that does not connect to CF's

RE: Session Variables Timeout

2002-01-15 Thread BEN MORRIS
(cf_timeoutwarning) Try this link http://devex.macromedia.com/developer/gallery/info.cfm?ID=DE7F61B9-4A7 3-11D5 -83F000508B94F85Amethod=Full -Original Message- From: Ray Bujarski [mailto:[EMAIL PROTECTED]] Sent: Monday, January 14, 2002 2:43 PM To: CF-Talk Subject: Session Variables

Session Variables Timeout

2002-01-14 Thread Ray Bujarski
I have an application that I am using session variables with. My users are getting ticked that when their session variables have timed out, they get an error. Instead they would like some sort of warning message that they are about to be logged out, instead of just timing them out

RE: Session Variables Timeout

2002-01-14 Thread Semrau, Steven L Mr RDAISA/SRA
To: CF-Talk Subject: Session Variables Timeout I have an application that I am using session variables with. My users are getting ticked that when their session variables have timed out, they get an error. Instead they would like some sort of warning message that they are about to be logged

Locking Session Variables?

2002-01-11 Thread ehoma
Hi, I'm new to using session variables and don't quite understand the locking thing. What'll happen if you don't lock everything? Here is some code that I've been using. I used cflock when I created the array but not when I'm reading or writing. It's been working fine. Am I in for big bad

RE: Locking Session Variables?

2002-01-11 Thread Pascal Peters
:[EMAIL PROTECTED]] Sent: vrijdag 11 januari 2002 10:29 To: CF-Talk Subject: Locking Session Variables? Hi, I'm new to using session variables and don't quite understand the locking thing. What'll happen if you don't lock everything? Here is some code that I've been using. I used cflock when I

cf and cgi session variables compatibility

2002-01-09 Thread loic jegouzo
hello, i have pb with cf session variables. i have created two numeric session variables in cf (the site is in cf) that i need in a cgi script wich launch an api. but these variables seem not to be recognized by the cgi script. with an asp example that i have there is no pb. in cf i have

RE: cf and cgi session variables compatibility

2002-01-09 Thread Joel Parramore
Session variables in CF are not automatically passed along to either CGI or ASP scripts. ASP scripts in particular have a Session scope, but that does not connect to CF's Session scope at all. If the script needs any C F session variables, then you need to manually pass them along when your co

RE: Session variables

2001-12-29 Thread Kola Oyedeji
This is very interesting as it is a technique I currently use, any idea why there is such a performance hit? Kola -Original Message- From: Cameron Childress [mailto:[EMAIL PROTECTED]] Sent: 27 December 2001 21:37 To: CF-Talk Subject: RE: Session variables I would presume, however

Re: Session variables

2001-12-29 Thread David Schmidt
hehe. Spectra - Original Message - From: Kola Oyedeji [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, December 29, 2001 6:20 AM Subject: RE: Session variables This is very interesting as it is a technique I currently use, any idea why there is such a performance

RE: Session variables

2001-12-29 Thread Andrew Scott
November 2001 12:34 AM To: CF-Talk Subject: RE: Session variables Good option, but the request scope is a memory killer - Spectra is based on it and can suffer really bad performance at times. Can you quantify that at all? I use the request scope extensively in places where I would have once

RE: Session variables

2001-12-29 Thread Andrew Scott
But degrading the performance of the server :-) -Original Message- From: Neil Clark [mailto:[EMAIL PROTECTED]] Sent: Friday, 9 November 2001 2:07 AM To: CF-Talk Subject: RE: Session variables You can actively make CFAS give each request a single threaded session - effectively managing

RE: Session variables

2001-12-29 Thread Andrew Scott
: Friday, 9 November 2001 7:34 AM To: CF-Talk Subject: RE: Session variables To support Dave's email... On a conference call to Allaire, they recommended that I remove any instance of the Application scope. Their reasoning was that this would remove the need for locking (and the performance costs

RE: Session variables

2001-12-29 Thread Andrew Scott
as well for the newer CF developers out there. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Friday, 9 November 2001 8:37 AM To: CF-Talk Subject: RE: Session variables Either way, since that call I haven't seen a real reason to go back to using the application

RE: Session variables

2001-12-29 Thread Andrew Scott
PROTECTED]] Sent: Friday, 9 November 2001 11:02 PM To: CF-Talk Subject: RE: Session variables OK, here's one example - We have a system where a huge amount of config data needs to be retrieved from a database for each page. Just retrieving all the DB records takes about 2.5 seconds. If you were

RE: Session variables

2001-12-29 Thread Cameron Childress
PROTECTED]] Sent: Saturday, December 29, 2001 9:21 AM To: CF-Talk Subject: RE: Session variables This is very interesting as it is a technique I currently use, any idea why there is such a performance hit? Kola -Original Message- From: Cameron Childress [mailto:[EMAIL PROTECTED

RE: Session variables

2001-12-29 Thread Cameron Childress
Good option, but the request scope is a memory killer - Spectra is based on it and can suffer really bad performance at times. I actually disagree; I started using the request scope when it was introduced. I have no problems with it; however I will say that you need to be extremely

RE: Session variables

2001-12-29 Thread Andrew Scott
: RE: Session variables Good option, but the request scope is a memory killer - Spectra is based on it and can suffer really bad performance at times. I actually disagree; I started using the request scope when it was introduced. I have no problems with it; however I will say that you need

RE: Session variables

2001-12-28 Thread UXB Internet
:[EMAIL PROTECTED]] Sent: Thursday, December 27, 2001 3:51 PM To: CF-Talk Subject: RE: Session variables You should allways use CFLOCK when dealing with sessions. An alternative is setting the Single Threaded Sessions in the CF Administrator. I don't know if this is an optimal solution

locking rant (was RE: Session variables)

2001-12-28 Thread Cameron Childress
.770.460.0963 -- http://www.neighborware.com America's Leading Community Network Software -Original Message- From: UXB Internet [mailto:[EMAIL PROTECTED]] Sent: Friday, December 28, 2001 1:27 PM To: CF-Talk Subject: RE: Session variables cf_rant I wish Allaire/Macromedia would address

RE: Session variables

2001-12-27 Thread Dave Watts
You should allways use CFLOCK when dealing with sessions. An alternative is setting the Single Threaded Sessions in the CF Administrator. I don't know if this is an optimal solution, but I always transfer all session variables to the request scope - inside a CFLOCK

RE: Session variables

2001-12-27 Thread Cameron Childress
You should allways use CFLOCK when dealing with sessions. An alternative is setting the Single Threaded Sessions in the CF Administrator. I don't know if this is an optimal solution, but I always transfer all session variables to the request scope - inside a CFLOCK

Re: Session variables

2001-12-27 Thread Don Vawter
] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, December 27, 2001 1:54 PM Subject: RE: Session variables You should allways use CFLOCK when dealing with sessions. An alternative is setting the Single Threaded Sessions in the CF Administrator. I don't know if this is an optimal solution

RE: Session variables

2001-12-27 Thread Cameron Childress
I would presume, however, that if you have a handful of simple variables like for instance a datasource name and a couple of primary keys that it should't have problems, correct? I would think the problem would come in if you are transfering queries, arrays of structs. etc. or am I just

Session variables on clustered servers?

2001-12-20 Thread Shawn Grover
the cluster will be using CF5's clustering capabilities. (well, I know CF4.5 did it, and assume CF5 does as well). Are session variables a reasonable option on a cluster? or should I be using Client variables with a DSN for storage? Are there any gotcha's I need to be aware of with regards to the Session

RE: Session variables on clustered servers?

2001-12-20 Thread Dave Watts
I know Sessions variables can span a cluster, but am not sure of the details/gotchas. That's incorrect. In CF 5, Session variables are stored within the memory of an individual server, and can't span a cluster. My experience with clusters is non-existent, but it looks like I'm going

RE: Session variables on clustered servers?

2001-12-20 Thread Herbener, Martin - School Information Technology
Session variables CANNOT span servers. CF 4.5 clustercats can do sticky sessions, which means that the first server the user hits is the one they use for the duration of their visit (I'm not sure if this is done via cookie or URL), and therefore you can use session variables since the user

Session variables expiring

2001-12-19 Thread Joe Tartaglia
I thought I had this all figured out -- it works fine on sites running under CF Ver. 4.0 -- but now I realize that I don't. My session variables on a site running on an NT 4/CF 4.5 server keep expiring prematurely (it seems like after 10 or 20 minutes). The following code is in my

RE: Session variables expiring

2001-12-19 Thread James Taavon
Joe, You need to stop and re-start CF services on your web server for the changes to take effect in CF Administrator. James -Original Message- From: Joe Tartaglia [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 19, 2001 11:10 AM To: CF-Talk Subject: Session variables expiring

Setting session variables using JavaScript

2001-11-29 Thread Perez, Bismark
Hello there, Is it possible to set the value of a session variable using JavaScript, the scenario is the following, I have a page that opens a window where the user can select a value from a select box, the form action is actually call to a JavaScript function that refresh the opener window

RE: Setting session variables using JavaScript

2001-11-29 Thread Raymond Camden
-Talk Subject: Setting session variables using JavaScript Hello there, Is it possible to set the value of a session variable using JavaScript, the scenario is the following, I have a page that opens a window where the user can select a value from a select box, the form action

RE: Having major problems with session variables

2001-11-14 Thread Daye, Marianne
and application to pick up other session scoped variables. -Original Message- From: Chris Bohill [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 13, 2001 12:21 PM To: CF-Talk Subject: Having major problems with session variables Hi, Session Variables seem to be a hot topic at the minute, so I

RE: Having major problems with session variables

2001-11-14 Thread Chris Bohill
Not a whisper of the Duplicate() function in the application, but thanks for the help anyway. Chris. -Original Message- From: Daye, Marianne [mailto:[EMAIL PROTECTED]] Sent: 14 November 2001 13:05 To: CF-Talk Subject: RE: Having major problems with session variables Just a shot

Having major problems with session variables

2001-11-13 Thread Chris Bohill
Hi, Session Variables seem to be a hot topic at the minute, so I was wondering if anyone could shed some light or give some advice on the problem below. We have a multiple user web based application that is all user-profile based. User A is the site administrator with full access to the site

Re: Having major problems with session variables

2001-11-13 Thread Douglas L. Brown
that using temp variables would be the best way to go IE CFAPPLICATION NAME=SecureApp CLIENTMANAGEMENT=Yes SESSIONMANAGEMENT=Yes SETCLIENTCOOKIES=Yes SESSIONTIMEOUT=#createTimeSpan(0, 0, 60, 0)# !--- Lock all session variables to assure security in the use of sessions //--- CFLOCK scope

RE: Having major problems with session variables

2001-11-13 Thread Brunt, Michael
to make sure that the same names are not being used for different variables and in addition make sure that all variables are fully scoped. I would also check that the user session variables are being deleted by checking if they still exists after they are supposed to have been deleted. One last tip

RE: Session variables

2001-11-09 Thread Neil Clark
Now Now, Dave, dont be cussing Spectra :-) Neil Team Macromedia ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: Session variables

2001-11-09 Thread Aidan Whitehall
There are legitimate uses for the Application scope. In what situations would you need to use the Application scope which couldn't be handled by the Request scope? I've never been able to think of any good examples. -- Aidan Whitehall [EMAIL PROTECTED] Macromedia ColdFusion Developer

RE: Session variables

2001-11-09 Thread Alistair Davidson
into the REQUEST scope, which only takes about 50 ms. how's that? -Original Message- From: Aidan Whitehall [mailto:[EMAIL PROTECTED]] Sent: 09 November 2001 11:31 To: CF-Talk Subject: RE: Session variables There are legitimate uses for the Application scope. In what situations would you

RE: Session variables

2001-11-09 Thread Aidan Whitehall
OK, here's one example - [snip] how's that? Yeah, great example. Never thought of that. Thanks. -- Aidan Whitehall [EMAIL PROTECTED] Macromedia ColdFusion Developer Fairbanks Environmental +44 (0)1695 51775 ~~ Your ad could be here. Monies

RE: Session variables

2001-11-09 Thread Dave Watts
There are legitimate uses for the Application scope. In what situations would you need to use the Application scope which couldn't be handled by the Request scope? I've never been able to think of any good examples. Sure, there are plenty. Basically, they fall into two categories: 1.

RE: Session variables

2001-11-08 Thread Kinley Pon
thanks Neil - Kinley From: Neil Clark [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: Session variables Date: Thu, 8 Nov 2001 15:07:12 - You can actively make CFAS give each request a single threaded session - effectively managing the locking

Re: Session variables

2001-11-08 Thread Kinley Pon
thanks gyrus - Kinley From: gyrus [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: Session variables Date: Thu, 8 Nov 2001 16:02:43 - You can actively make CFAS give each request a single threaded session - effectively managing the locking for you

Re: Session variables

2001-11-08 Thread Kinley Pon
thanks Jeffry - Kinley From: Jeffry Houser [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: Session variables Date: Thu, 08 Nov 2001 09:59:54 -0800 That is confusing. I think perhaps even a bit misleading. My understanding is that session

RE: Session variables

2001-11-08 Thread Kinley Pon
thanks Pete - Kinley From: Pete Freitag [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: Session variables Date: Thu, 8 Nov 2001 05:09:57 -0500 Session variables are not supposed to be shared between clients. But they can be, if someone posts a link

proxy server and session variables

2001-10-04 Thread Harper, Laura
Fellow listers: I'm sure my question has been asked before but I don't see anything in the archives that I need. What happens exactly to session variables if users are forced to go through a proxy server? Or, put another way, what does a proxy server do to session variables? My company

Re: proxy server and session variables

2001-10-04 Thread Michael Vinson
fusion - look for tech note on importance of session mngt.on main cf page What happens exactly to session variables if users are forced to go through a proxy server? Or, put another way, what does a proxy server do to session variables? dunno, but maybe cookies are intercepted(?!) My

RE: Points of failure for session variables

2001-10-02 Thread Daye, Marianne
Information Delivery Systems (IDS) http://ids.rti.org (919) 541-8031 -Original Message- From: Chris Norloff [mailto:[EMAIL PROTECTED]] Sent: Monday, October 01, 2001 9:07 AM To: CF-Talk Subject: Re: Points of failure for session variables Manually locking all reads and writes (locking

RE: Points of failure for session variables

2001-10-02 Thread Dave Watts
Chris, what did you mean when you said that a query with a name of application.queryname is a 'write'. Doesn't that depend on what you do with it? If I loop through session.QueryName, but only read the values, is that not a 'readonly' for locking purposes? The act of running the CFQUERY

<    4   5   6   7   8   9   10   11   12   >