SOLVED Re: WDDX, cookies, and Netscape

2003-11-25 Thread Bryan Stevenson
It's definately a cookie size issue.we tested with a smaller packet size and all is well...now each step gets it's own cookie.

Thanks for the link to the tag RayI'll check it out.

I personally NEVER use the SESSION scope just so that I NEVER have to worry about an application moving to a clustered server environment and having session issuesif sessions are client side...life is good and scalable.I've heard MX has perhaps sorted out some of the older CF loss of session issues with clustered servers.but I know my approach will always work...so for now I'm sticking (hehe) with it.

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message - 
From: Raymond Camden 
To: CF-Talk 
Sent: Tuesday, November 25, 2003 1:01 PM
Subject: RE: WDDX, cookies, and Netscape

I'm not sure if Netscape has a smaller cookie size tan IE, but why not
simply store the value in the session scope? 

Also, I have a multi-step process custom tag available on my home page that
you may like:

http://www.camdenfamily.com/morpheus/blog/index.cfm?mode=entryentry=395FB53
7-009C-A8DB-7F53B930936AD58C


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: WDDX, cookies, and Netscape

2003-11-25 Thread Adam Wayne Lehman
As far as I know cookies cannot exceed 4k regardless of browser. Which I
think is like 256 chars.

 
. I'm positive about the 4k part, but not the 256 char part.

 
Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division

 
-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 25, 2003 4:02 PM
To: CF-Talk
Subject: RE: WDDX, cookies, and Netscape

 
I'm not sure if Netscape has a smaller cookie size tan IE, but why not
simply store the value in the session scope? 

Also, I have a multi-step process custom tag available on my home page
that
you may like:

http://www.camdenfamily.com/morpheus/blog/index.cfm?mode=entry
http://www.camdenfamily.com/morpheus/blog/index.cfm?mode=entryentry=39
5FB53 entry=395FB53
7-009C-A8DB-7F53B930936AD58C

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: SOLVED Re: WDDX, cookies, and Netscape

2003-11-25 Thread Raymond Camden
If you can't use session vars, or client vars, consider using a database and
simply get/set on each request. It isn't the best solution, but its
workable. Use a cookie to just record the PK for the user, but be sure to
not use sequential PKs.


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: WDDX, cookies, and Netscape

2003-11-25 Thread Raymond Camden
I'm not sure if Netscape has a smaller cookie size tan IE, but why not
simply store the value in the session scope? 

Also, I have a multi-step process custom tag available on my home page that
you may like:

http://www.camdenfamily.com/morpheus/blog/index.cfm?mode=entryentry=395FB53
7-009C-A8DB-7F53B930936AD58C


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: SOLVED Re: WDDX, cookies, and Netscape

2003-11-25 Thread Bryan Stevenson
Thanks again Rayyeah I should have mentioned...my session handling (seperate from this cookie issue) involves a client cookie holding a session ID (session_ID relates to a User_ID) and that cookie value can then be used to get user details (like name, user group, etc.).So yes...I use a client var/database approach.rock solidnever lost a session in 6 years ;-)

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message - 
From: Raymond Camden 
To: CF-Talk 
Sent: Tuesday, November 25, 2003 2:10 PM
Subject: RE: SOLVED Re: WDDX, cookies, and Netscape

If you can't use session vars, or client vars, consider using a database and
simply get/set on each request. It isn't the best solution, but its
workable. Use a cookie to just record the PK for the user, but be sure to
not use sequential PKs.


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]