RE: Points of failure for session variables

2001-10-02 Thread Chris Norloff
Subject: Re: Points of failure for session variables Manually locking all reads and writes (locking by scope) is good. Beware of things that might not look like writes - like a query with a name of application.queryname is actually a write into the application scope. Also, use the Duplicate

Re: Points of failure for session variables

2001-10-01 Thread Chris Norloff
functioning is absolutely necessary, until now. The application I'm building now relies heavily on session variables and will fail if variables are not properly passed. Of course, I'm using CFLock around all session variables (both read and write). Besides that, I'm wondering are their other problems

RE: Points of failure for session variables

2001-10-01 Thread PEREZ, RICHARD D (SBCSI)
There is also an issue if you have several servers. Session variables are not really a good use... for it is only being stored on one server and won't be available on the other server. And the best option here is either use a Cookie or a Client variable. -Original Message- From: [EMAIL

RE: Points of failure for session variables

2001-10-01 Thread Dennis Powers
. On each subsequent request the browser sends them back. In this way CF can maintain state and allows you to use both Session Variables (stored in memory) or Client Variables (stored in a database). If the browser won't accept cookies then the browser needs to pass those tokens back to the server as a URL

RE: Points of failure for session variables

2001-10-01 Thread Owens, Howard
variables, you are relying on these session cookies. I wonder how often session cookies are blocked. And if they are blocked, what are the consequences to the application. I'm seeing a lot more cookie blocking on some other sites. So do session variables relying on session cookies? Will session

RE: Points of failure for session variables

2001-10-01 Thread Dave Watts
As I understand it, there are two types of cookies -- cookies that are written the client's disk and cookies that are session cookies and are stored in the browser (and therefore lost when the browser is closed). My assumption is, in using session variables, you are relying

Points of failure for session variables

2001-09-30 Thread howard
Of course I've used system variables several times in the past, but never in an application where their proper functioning is absolutely necessary, until now. The application I'm building now relies heavily on session variables and will fail if variables are not properly passed. Of course, I'm

Re: Points of failure for session variables

2001-09-30 Thread Jim McAtee
If you're relying on cookies to implement session variables, then there are a lot of ways that cookies can be blocked or otherwise not passed from server to client or vise versa. Hardware firewalls, software firewalls, proxy servers, browser settings are a few. Then there are issues

Re: Points of failure for session variables

2001-09-30 Thread Mike Tangorre
- From: Jim McAtee [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, September 30, 2001 8:39 PM Subject: Re: Points of failure for session variables If you're relying on cookies to implement session variables, then there are a lot of ways that cookies can be blocked or otherwise

RE: Points of failure for session variables

2001-09-30 Thread howard
Thanks, Jim. No cookies. No clusters. -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 30, 2001 5:39 PM To: CF-Talk Subject: Re: Points of failure for session variables If you're relying on cookies to implement session variables

Session Variables and directories

2001-09-12 Thread Ben Densmore
I am currently working on an order entry app and created a login screen before a user can get to the actual app. When they login in I am creating several session variables which work, but once a person is logged in successfully they get taken to a page which is in another directory. So

Re: Session Variables and directories

2001-09-12 Thread cf refactoring
am creating several session variables which work, but once a person is logged in successfully they get taken to a page which is in another directory. So if the user is part of the sales dept they go to the sales directory, the problem I am having is once they go into that directory I

RE: Session Variables and directories

2001-09-12 Thread Raymond Camden
: Ben Densmore [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 12, 2001 12:00 PM To: CF-Talk Subject: Session Variables and directories I am currently working on an order entry app and created a login screen before a user can get to the actual app. When they login in I am

RE: Session Variables and directories

2001-09-12 Thread Mark Stewart
Once you leave the boundaries of your cfapplication tag, you can't reference those session variables. Session variables are tied to a specific application name. Mark -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 12, 2001 12:00 PM To: CF-Talk

Re: CFLOCK and Session variables

2001-09-10 Thread Matt Robertson
PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, September 05, 2001 9:45 AM Subject: CFLOCK and Session variables A couple of questions that I can't seem to sort out from reading the DOCS... 1. Why would one need to use cflock when WRITING session.variables ? My impression

Re: CFLOCK and Session variables

2001-09-10 Thread Chris Norloff
Have you tried this doc? http://www.allaire.com/handlers/index.cfm?ID=17318Method=Full best, Chris Norloff -- Original Message -- from: Gonzo Rock [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] date: Wed, 05 Sep 2001 09:45:21 -0700 A couple of questions

CFLOCK and Session variables

2001-09-10 Thread Yager, Brian T Contractor/NCCIM
I know we have discussed this a good bit lately but I am still needing some understanding. In my application, I make MANY session variables. I use these variables to check certain things on many pages. Because of the past threads on this I have surrounded them with CFLOCK tags. NowCan

RE: CFLOCK and Session variables

2001-09-10 Thread Tyson Vanek
Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: Monday, September 10, 2001 2:27 PM To: CF-Talk Subject: CFLOCK and Session variables I know we have discussed this a good bit lately but I am still needing some understanding. In my application, I make MANY session variables. I use these variables

RE: CFLOCK and Session variables

2001-09-07 Thread Kwang Suh
Blackall Street BARTON ACT 2600 Ph: +61-2-6271 2256 Fax: +61-2-6271 2278 http://www.anzfa.gov.au -Original Message- From: Gonzo Rock [mailto:[EMAIL PROTECTED]] Sent: Thursday, 6 September 2001 2:45 To: CF-Talk Subject: CFLOCK and Session variables A couple of questions that I

RE: CFLOCK and Session variables

2001-09-07 Thread Daniel Lancelot
:[EMAIL PROTECTED]] Sent: 05 September 2001 17:45 To: CF-Talk Subject: CFLOCK and Session variables A couple of questions that I can't seem to sort out from reading the DOCS... 1. Why would one need to use cflock when WRITING session.variables ? My impression is that: Session.var is NOT shared

Re: CFLOCK and Session variables

2001-09-07 Thread BEN MORRIS
A user with 2 browser windows open both on your site, or if your site has frames would be 2 situations where there could be a session var conflict. - Ben Gonzo Rock [EMAIL PROTECTED] 09/05/01 12:45PM A couple of questions that I can't seem to sort out from reading the DOCS... 1. Why

Re: CFLOCK and Session variables

2001-09-07 Thread Don Vawter
10:45 AM Subject: CFLOCK and Session variables My impression is that: Session.var is NOT shared, Client.var is NOT shared, Application.var IS shared A couple of questions that I can't seem to sort out from reading the DOCS... 1. Why would one need to use cflock when WRITING

RE: CFLOCK and Session variables

2001-09-07 Thread Pete Freitag
You need to use CFLOCK to read and write session variables, the potential problems arise when a person browsing the web double clicks on a link, or someone sends a url out with cfid and cftoken on them. Session variables are shared, because they are accessible to all CF threads. When a person

RE: CFLOCK and Session variables

2001-09-06 Thread Tilbrook, Peter
- From: Gonzo Rock [mailto:[EMAIL PROTECTED]] Sent: Thursday, 6 September 2001 2:45 To: CF-Talk Subject: CFLOCK and Session variables A couple of questions that I can't seem to sort out from reading the DOCS... 1. Why would one need to use cflock when WRITING session.variables ? My impression

CFLOCK and Session variables

2001-09-05 Thread Gonzo Rock
A couple of questions that I can't seem to sort out from reading the DOCS... 1. Why would one need to use cflock when WRITING session.variables ? My impression is that: Session.var is NOT shared, Client.var is NOT shared, Application.var IS shared 2. Why would one need to use cflock when

shopping cart--switching to SSL with session variables

2001-08-29 Thread Megan Cytron
headers for fast understanding of each page's function Use of the request scope instead of application and server scopes eliminates possible data corruption and increase scalability The use of database-stored client variables instead of session variables allows unlimited clustering

RE: shopping cart--switching to SSL with session variables

2001-08-29 Thread Dave Feltenberger
- From: Megan Cytron [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 5:10 PM To: CF-Talk Subject: shopping cart--switching to SSL with session variables Does anyone foresee any problems with appending ?#session.URLToken# to the url to which a form submits when switching from an insecure

accessing Cf session variables on same server from another virtual domain

2001-08-21 Thread Stephen M. Marcus
I have an application which was running on a single domain and I'm porting to multiple virtual domains. These must share a a single secure domain for collecting credit card information. Unfortunately, session variables, which are used throughout the application, are specific to each domain, so

RE: accessing Cf session variables on same server from another virtual domain

2001-08-21 Thread Andrew Scott
project!! -Original Message- From: Stephen M. Marcus [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 22 August 2001 3:13 AM To: CF-Talk Subject: accessing Cf session variables on same server from another virtual domain I have an application which was running on a single domain and I'm

RE: accessing Cf session variables on same server from another vi rtual domain

2001-08-21 Thread Dave Watts
Set your CFID/CFTOKEN to apply to the entire domain with the SETDOMAINCOOKIES=yes attribute of CFAPPLICATION tag (like you would if you were using load-balancing). I don't think that's going to help the original poster, since SETDOMAINCOOKIES simply allows CFID and CFTOKEN cookies to be

Re: accessing Cf session variables on same server from another vi rtual domain

2001-08-21 Thread Dave Hannum
PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, August 21, 2001 2:30 PM Subject: RE: accessing Cf session variables on same server from another vi rtual domain Set your CFID/CFTOKEN to apply to the entire domain with the SETDOMAINCOOKIES=yes attribute of CFAPPLICATION tag (like you

RE: accessing Cf session variables on same server from another vi rtual domain

2001-08-21 Thread Glenn Olsen
[mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 21, 2001 2:30 PM To: CF-Talk Subject: RE: accessing Cf session variables on same server from another vi rtual domain Set your CFID/CFTOKEN to apply to the entire domain with the SETDOMAINCOOKIES=yes attribute of CFAPPLICATION tag (like you would

Re: CFFILE Output--how do I include CFLOOP and session variables

2001-07-16 Thread Bud
On 7/16/01, Megan Cytron penned: Here's my code: cfset textoutput= Order: #getMaxOrderID.MaxOrderID# CFLOOP INDEX=loopcount From=1 To=#ArrayLen(session.cart)# ITEM CODE:#session.cart[loopcount][3]# VARIETY: #session.cart[loopcount][1]# QUANTITY:

RE: CFFILE Output--how do I include CFLOOP and session variables

2001-07-16 Thread Paul Mone
://www.ninthlink.com 619.222.7082 -Original Message- From: Megan Cytron [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 15, 2001 11:01 PM To: CF-Talk Subject: CFFILE Output--how do I include CFLOOP and session variables I'll preface this dodo-brain question by saying that I'm completely sleep

RE: CFFILE Output--how do I include CFLOOP and session variables

2001-07-16 Thread Megan Cytron
I don't believe you can place cf tags inside of ANY cf tags. Try something like this: cfset textoutput=Order: #getMaxOrderID.MaxOrderID# CFLOOP INDEX=loopcount From=1 To=#ArrayLen(session.cart)# cfset textoutput = textoutput ITEM CODE: #session.cart[loopcount][3]#

RE: CFFILE Output--how do I include CFLOOP and session variables

2001-07-16 Thread Bud
On 7/16/01, Megan Cytron penned: I don't believe you can place cf tags inside of ANY cf tags. Try something like this: cfset textoutput=Order: #getMaxOrderID.MaxOrderID# CFLOOP INDEX=loopcount From=1 To=#ArrayLen(session.cart)# cfset textoutput = textoutput ITEM

CFFILE Output--how do I include CFLOOP and session variables

2001-07-15 Thread Megan Cytron
. When I put CFLOOP in textoutput and then reference it within CFFILE, all of my session variables (from a shopping cart) get messed up and I get an error message saying that my session variables are no longer there. (My shopping cart is working fine elsewhere and I'm able to send the looped session

Re: session variables - newbie

2001-07-12 Thread corrigan
. This will help you isolate the problem. Hope this helps, and welcome to cf. Michael - Original Message - From: Julie Clegg [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 11, 2001 3:43 PM Subject: session variables - newbie I am trying to add a field to my records

session variables - newbie

2001-07-11 Thread Julie Clegg
I am trying to add a field to my records to let me know who added/updated the recordI am new to Cf so I am having some trouble figuring out how to go about doing this.this app is running only on our network and users must go thru a login page to access the app. My Login Action page

RE: Lost Session variables

2001-07-05 Thread David Laing
) Donno if that will help you - not having the variables persistant didn't help me :( Regards David -Original Message- From: Rob McLennan [mailto:[EMAIL PROTECTED]] Sent: 05 July 2001 08:17 To: CF-Talk Subject: Lost Session variables I have a an end user using IE5 on Windows ME

Re: Cookies vs. Session Variables

2001-07-04 Thread Ken Beard
because the browsers were set up to share the same cookies. In this case, all users had access to the information of the last user to log in. Is this a common configuration in networks? Would switching to session variables eliminate this problem in such an environment or could there still be issues

RE: Cookies vs. Session Variables

2001-07-04 Thread Costas Piliotis
an even bigger security threat. -Original Message- From: Pete Miller [mailto:[EMAIL PROTECTED]] Sent: Monday, July 02, 2001 12:55 PM To: CF-Talk Subject: Cookies vs. Session Variables We have an application that uses cookies to track the identity of a user after logging in. In a beta test

Lost Session variables

2001-07-04 Thread Rob McLennan
I have a an end user using IE5 on Windows ME who is unable to maintaing her session variables. We have checked that cookies are enabled etc but still now success. This is the only person who is reporting the problem - we know everthing works properly on IE5 Win95/98/NT. Any ideas? Rob

RE: Cookies vs. Session Variables

2001-07-03 Thread Shawn Regan
Switching to session vars would eliminate the problem. Shawn Regan Applications Developer Pacific Technology Solutions -Original Message- From: Pete Miller [mailto:[EMAIL PROTECTED]] Sent: Monday, July 02, 2001 12:55 PM To: CF-Talk Subject: Cookies vs. Session Variables We have

RE: Cookies vs. Session Variables

2001-07-03 Thread Cameron Childress
, July 02, 2001 3:55 PM To: CF-Talk Subject: Cookies vs. Session Variables We have an application that uses cookies to track the identity of a user after logging in. In a beta test performed at a university lab, this model failed because the browsers were set up to share the same cookies

Re: Cookies vs. Session Variables

2001-07-03 Thread Nick McClure
in. In a beta test performed at a university lab, this model failed because the browsers were set up to share the same cookies. In this case, all users had access to the information of the last user to log in. Is this a common configuration in networks? Would switching to session variables

Re: Cookies vs. Session Variables

2001-07-03 Thread wnelto
I've never heard of a lab setup like this, but certainly don't doubt it. Is there some reasoning behind the configuration? Session variables, by default, use cookies to maintain identity. You can disable this by using the SetClientCookies=No in the CFAPPLICATION tag. If you do this, you'll

Re: Cookies vs. Session Variables

2001-07-03 Thread Cary Gordon
. In this case, all users had access to the information of the last user to log in. Is this a common configuration in networks? Would switching to session variables eliminate this problem in such an environment or could there still be issues with this, depending on their configuration? -Pete Cary

Cookies vs. Session Variables

2001-07-02 Thread Pete Miller
in. Is this a common configuration in networks? Would switching to session variables eliminate this problem in such an environment or could there still be issues with this, depending on their configuration? -Pete Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http

Session Variables

2001-06-06 Thread Ray Bujarski
I don't get it everytime I try to do an output on this session variable I get an error like it was not initialized!! Any help would be greatly appreciated. I am using cfserver 4.5 on solaris 5.6 What am I doing wrong? here is my application.cfm code CFAPPLICATION NAME=Score

Re: [Session Variables - I don't get it]

2001-05-14 Thread Alex
because you are setting it to black on the application.cfm page. change the application.cfm cfset to cfparam Kronenberger, Douglas [EMAIL PROTECTED] wrote: Greetings, I'm not getting how to implement session variables. I'm just trying to set the session variable Session.Dog from black to Blue

Re: [Session Variables - I don't get it]

2001-05-14 Thread Bill King
It appears that you are spitting out the variable before you change it to blue. - Bill - - Original Message - From: Alex [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, May 11, 2001 7:47 AM Subject: Re: [Session Variables - I don't get it] because you are setting

Session variables.......

2001-05-13 Thread Stevens, Jason
Would anyone know of a way to make session variables either expire or reset after a page is loaded? I'm having people go through a form process and want to zero out all session variables upon submission and I'm looking for a way to do that. If this is a duh, how could you not know the answer

Re: Session variables.......

2001-05-13 Thread Marius Milosav
technology, it's about people. Virtual Help Desk Demo (VHD) www.scorpiosoft.com/vhd/login.cfm - Original Message - From: Stevens, Jason [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, May 13, 2001 11:07 PM Subject: Session variables... Would anyone know of a way to make

RE: Session variables.......

2001-05-13 Thread Raymond B.
[mailto:[EMAIL PROTECTED]] Sent: May 13, 2001 20:08 To: CF-Talk Subject: Session variables... Would anyone know of a way to make session variables either expire or reset after a page is loaded? I'm having people go through a form process and want to zero out all session variables upon

RE: Session variables.......

2001-05-13 Thread Raymond B.
: Stevens, Jason [mailto:[EMAIL PROTECTED]] Sent: May 13, 2001 20:08 To: CF-Talk Subject: Session variables... Would anyone know of a way to make session variables either expire or reset after a page is loaded? I'm having people go through a form process and want to zero out all session

Session Variables - I don't get it

2001-05-11 Thread Kronenberger, Douglas
Greetings, I'm not getting how to implement session variables. I'm just trying to set the session variable Session.Dog from black to Blue and have it show up as Blue on the test.cfm. It keep show'n up black. I do have Session Variables enabled via the CF Administrator page. What am I miss'n

RE: Session Variables - I don't get it

2001-05-11 Thread Kola Oyedeji
Have you got cookies switched on? incidentaly you dont need ## signs inside cfset. KOla -Original Message- From: Kronenberger, Douglas [mailto:[EMAIL PROTECTED]] Sent: 11 May 2001 14:50 To: CF-Talk Subject: Session Variables - I don't get it Greetings, I'm not getting how

RE: Session Variables - I don't get it

2001-05-11 Thread Per Kleven
cfoutput#session.dog#/cfoutput in the test.cfm file. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Kronenberger, Douglas Sent: 11. mai 2001 15:50 To: CF-Talk Subject: Session Variables - I don't get it Greetings, I'm not getting how to implement

RE: Session Variables - I don't get it

2001-05-11 Thread Boardwine, David L.
PROTECTED]] Sent: Friday, May 11, 2001 9:50 AM To: CF-Talk Subject: Session Variables - I don't get it Greetings, I'm not getting how to implement session variables. I'm just trying to set the session variable Session.Dog from black to Blue and have it show up as Blue on the test.cfm. It keep show'n up

RE: Session Variables - I don't get it

2001-05-11 Thread douglas . kronenberger
: Friday, May 11, 2001 7:15 AM To: CF-Talk Subject: RE: Session Variables - I don't get it Hi You're setting the session.dog variable to Black EACH time in your application file, and in your test.cfm file to Blue AFTER it's outputted. So when you output it, it's set to black. use cfparam name

Problems with CFLOCK and session variables?

2001-05-08 Thread Gregory Harris
Ok, what is the consequence for failing to lock a session variable? Right now it appears that with some unlocked session variables that we have on an application that we inherited, it appears to be generating some huge memory leaks in ColdFusion whenever we're going through the application

RE: Problems with CFLOCK and session variables?

2001-05-08 Thread Cameron Childress
-Talk Subject: Problems with CFLOCK and session variables? Ok, what is the consequence for failing to lock a session variable? Right now it appears that with some unlocked session variables that we have on an application that we inherited, it appears to be generating some huge memory leaks

Re: Problems with CFLOCK and session variables?

2001-05-08 Thread Jamie Jackson
a session variable? Right now it appears that with some unlocked session variables that we have on an application that we inherited, it appears to be generating some huge memory leaks in ColdFusion whenever we're going through the application. Is it possible the 2 are related? Also what

Session variables

2001-04-23 Thread Joshua Meekhof
of a session variable. If I knew the inner workings of session variables, I might be able to do this. Josh Meekhof ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail

CF 4.5 Automatic locking of session variables

2001-04-09 Thread JAIME HOI
may i ask whether if there is automatic locking for session variables? Cos previously i code my application in CF4.0 and most of the sessionn variables are not locked. But now we are going to migrate to CF4.5. And somehow the compiler produce an error when a session variable was not locked

RE: CF 4.5 Automatic locking of session variables

2001-04-09 Thread Chris Michl
Yes - go into the CF Administrator, click on LOCKING from the menu on the left. Towards the bottom of the scree you'll see the different locking options. Select AUTOMATIC READ LOCKING for Application, Server or Session variables. A couple of months ago there was some discussion regarding

RE: CF 4.5 Automatic locking of session variables

2001-04-09 Thread JAIME HOI
actually i have alreadi selected that option but i still get the error that i should use CFLOCK to lock session variables. JAIME HOI -Original Message- From: Chris Michl [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 8:54 AM To: CF-Talk Subject: RE: CF 4.5 Automatic locking

Session Variables

2001-03-25 Thread Julia Green
is used, the name to come up from the database -- I am having a bit of a problem with this -- I know it has something to do with session variables Questions: 1) What should I add to the application.cfm page? I tried this, but now the firstname doesn't come up... entstorage="" --- CFA

RE: Session Variables

2001-03-25 Thread Ben Forta
an refer to #SESSION.FirstName# as needed. Hope this helps. --- Ben -Original Message- From: Julia Green [mailto:[EMAIL PROTECTED]] Sent: Sunday, March 25, 2001 12:38 PM To: CF-Talk Subject: Session Variables Ben or anyone -- I have recently brought Ben Forta's book on ColdFusion Web Applica

Session variables stored in SQL server

2001-03-22 Thread Andres Leon
Hello all, I am wondering if anyone has had any experience with this: I am running a IIS5.0 and CF cluster of 5 servers and one databaser server (sql70) will upgrade to sql2k soon. I was adviced by Allaire to move my session variables to the database, rather than storing them in each server's

RE: Session variables stored in SQL server

2001-03-22 Thread Steve Martin
You're talking about client variables, not session variables. However: They are as safe as they were in the registry as they are keyed on the CFID/CFTOKEN pair which are generated by CF. Make sure in your CFAPPLICATION... you have UseDomainCookes set to TRUE so that no matter which server you

RE: Session variables stored in SQL server

2001-03-22 Thread Bryan Love
Ok, client vs. session variables 101. Session variables are stored in RAM on the CF server which is all fine and dandy until you create a load-balanced cluster. In a cluster the load-balancing equipment can switch a session to a less busy server at any time - thereby losing a clients session

RE: Session variables stored in SQL server

2001-03-22 Thread Bud
On 3/22/01, Bryan Love penned: 3. If you are using cookies instead of the DB to store client variable information you are limited to 4k characters maximum. The same is true for DB stored client variables if you are using ORACLE. Why can't you use Oracle to store larger client variables? Or is

Session Variables

2001-03-12 Thread Josh Daws
I'm new at CF. I'm very experienced in ASP however. I am now working on one of my first CF projects and I'm having trouble with session variables. In ASP I'm used to having the sessions expire when I shut down a browser. However, I'm declaring a session variable in cold fusion and when I close

RE: Session Variables

2001-03-12 Thread Patricia Lee
l#" /cfif |-Original Message- |From: Josh Daws [mailto:[EMAIL PROTECTED]] |Sent: Monday, March 12, 2001 2:12 PM |To: CF-Talk |Subject: Session Variables | | |I'm new at CF. I'm very experienced in ASP however. I am now |working on |one of my first CF projects and I'm having tr

Session variables

2001-03-12 Thread Parker, Kevin
t, or does it do something else, or does it do nothing. I am thinking of varying the session timeout in one page to effectively get rid of all session variables by changing the session timeout to 1 second viz: cfapplication name="SmartMoveTest" clientmanagement="

Re: Session variables

2001-03-12 Thread Bud
of varying the session timeout in one page to effectively get rid of all session variables by changing the session timeout to 1 second viz: cfapplication name="SmartMoveTest" clientmanagement="Yes" sessionmanagement="Yes"

RE: Session variables

2001-03-12 Thread Bryan Love
identify the session variables you wish to delete - [lock] foo = structDelete(session,"key"); [end lock] Actually, I've found that it is easier to create and maintain applications if you can rely on certain variables ALWAYS being around and just test their contents.

RE: Session variables

2001-03-12 Thread Parker, Kevin
PROTECTED] www.workcover.com p: +61 8 82332548 f: +61 8 82332000 m: 0418 800 287 -Original Message- From: Bryan Love [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 13 March 2001 10:13:AM To: CF-Talk Subject: RE: Session variables The application will run under the MOST RECENTLY declared CFAPPLI

RE: Session variables

2001-03-12 Thread Bryan Love
Not necesarily. I ran a regression test where I used different locking methods to read 10,000 application variables (same locking issue as session variables) and the results were somewhat surprising; using one CFLOCK tag outside the loop it took 450 ms while using 10,000 individual locks inside

RE: Session variables

2001-03-12 Thread paul smith
Amen. My latest app uses Client Request and doesn't have a single CFLOCK. best, paul At 05:16 PM 3/12/01 -0800, you wrote: Client variables require a little more experience and understanding to manipulate but they do not require locks and can be used in a clustered environment. When used in

RE: Session variables

2001-03-12 Thread Dave Watts
locking methods to read 10,000 application variables (same locking issue as session variables) and the results were somewhat surprising; using one CFLOCK tag outside the loop it took 450 ms while using 10,000 individual locks inside the loop took only 600 ms. I performed this experience using

RE: Session variables

2001-03-12 Thread Dylan Bromby
PROTECTED]] Sent: Monday, March 12, 2001 7:59 PM To: CF-Talk Subject: RE: Session variables Thank you Bryan - I was just consulting Ben Forta's book on cflock and to quote "Forcing code to single threaded use only can seriously impact system performance." Do you think this is

ANS: What are client and session variables?

2001-02-23 Thread Aidan Whitehall
This is for the person who asked the question about client and session variables (and of course all you others who want to know...). And before you ask, "yes", it's in the ColdFusion FAQ I'm building. Before we talk about client and session variables, we need to briefly discus

Session Variables and password protected folders...

2001-02-23 Thread Joby Bednar
Anyone familiar with session variables not being able to be used through password protected folders? I have a site that works fine on the dev server but won't set session variables on our live site. The site is hidden behind a password protected folder. I checked the settings in the admin

RE: understanding session variables

2001-02-21 Thread Aidan Whitehall
Please explain to me what occurs when you use session variables. The default is for a cookie to me created which stores the cftoken and cfid, correct? What happens when the "cookie" is stored in the registry? Where can I look up what is stored in my registry? And do

netscape and session variables

2001-02-21 Thread Eric V. Hodge
when testing my application session variables work under IE, but not Netscape. I have tried different versions of Netscape and none of them work. In all my browsers cookies are enabled. What could be the problem? -eric ~~ Structure your

RE: netscape and session variables

2001-02-21 Thread Phoeun Pha
make sure your session variables are locked -Original Message- From: Eric V. Hodge [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 21, 2001 9:50 AM To: CF-Talk Subject: netscape and session variables when testing my application session variables work under IE, but not Netscape. I

Re: netscape and session variables

2001-02-21 Thread Cami Lawson
February 21, 2001 9:50 AM Subject: netscape and session variables when testing my application session variables work under IE, but not Netscape. I have tried different versions of Netscape and none of them work. In all my browsers cookies are enabled. What could be

session variables

2001-02-20 Thread John McCosker
Has anyone ever experienced session variables not getting set. I have created a login page like so, cfif isdefined("form.uid") and isdefined("form.pwd") cfquery name="checkLoginUser" datasource="#application.dsn#" username="sa" p

RE: session variables

2001-02-20 Thread Daniel Lancelot
To: CF-Talk Subject: session variables Has anyone ever experienced session variables not getting set. I have created a login page like so, cfif isdefined("form.uid") and isdefined("form.pwd") cfquery name="checkLoginUser" datasource="#appli

RE: session variables

2001-02-20 Thread John McCosker
problem. Thanks Dan. -Original Message- From: Daniel Lancelot [mailto:[EMAIL PROTECTED]] Sent: 20 February 2001 10:47 To: CF-Talk Subject: RE: session variables Hi John, What it might be... Are you switching domains on the live server using cflocation at any time? If so, any session

RE: session variables

2001-02-20 Thread Daniel Lancelot
as the action... or you can use a meta refresh: meta http-equiv="Refresh" content="0; url=www.mydomain.com.index.cfm" -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED]] Sent: 20 February 2001 10:55 To: CF-Talk Subject: RE: session variables Ok Dan

RE: session variables

2001-02-20 Thread John McCosker
PROTECTED]] Sent: 20 February 2001 11:50 To: CF-Talk Subject: RE: session variables Your machine will be able to log onto the site because at some point in the past you wil have loaded a*.cfm page from that domain - if you delete all your cookies, and try logging in, then you probably wont be able

RE: session variables

2001-02-20 Thread Daniel Lancelot
is the form page .cfm or .htm - needs to be .cfm for the cookie to be set -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED]] Sent: 20 February 2001 12:21 To: CF-Talk Subject: RE: session variables The form is on the same domain as the action. How will the Meta refresh

RE: session variables

2001-02-20 Thread John McCosker
the form page is .cfm I am using cfform. -Original Message- From: Daniel Lancelot [mailto:[EMAIL PROTECTED]] Sent: 20 February 2001 12:27 To: CF-Talk Subject: RE: session variables is the form page .cfm or .htm - needs to be .cfm for the cookie to be set -Original Message

RE: session variables

2001-02-20 Thread John McCosker
Dan I got it working Simple but stupid, I had clientManagement set to 'no' -Original Message- From: Daniel Lancelot [mailto:[EMAIL PROTECTED]] Sent: 20 February 2001 12:27 To: CF-Talk Subject: RE: session variables is the form page .cfm or .htm - needs to be .cfm for the cookie

understanding session variables

2001-02-20 Thread Eric V. Hodge
Please explain to me what occurs when you use session variables. The default is for a cookie to me created which stores the cftoken and cfid, correct? What happens when the "cookie" is stored in the registry? Where can I look up what is stored in my registry? And do the values p

RE: session variables

2001-02-20 Thread Scott, Andrew
Check that cookies is switched on:-) Also is this a farm of computers in a load balance environment:-) There are ways to do the same thing, without using session variables:-) regards Andrew Scott Senior Coldfusion Application Developer -Original Message- From: John McCosker [mailto

<    5   6   7   8   9   10   11   12   >