put locks around all your session var read/writes.
also is you URL changing domains or from IP to name-based? i don't know if
this makes a difference but it might.
 

Robyn Follen <[EMAIL PROTECTED]> wrote:
Hey Folks,

Does anyone know if there is a limit to the number of session variables that
one application can have?  We have a case here where our application drops
session variables from time to time without explanation.  If it helps, we
have this piece of code in the application.cfm file to get rid of all
session variables on a browser close:  

<cfif IsDefined("Cookie.CFID") AND IsDefined("Cookie.CFTOKEN")>
  <cfset cfid_local = Cookie.CFID>
  <cfset cftoken_local = Cookie.CFTOKEN>
  <cfcookie name="CFID" value="#cfid_local#">
  <cfcookie name="CFTOKEN" value="#cftoken_local#">
</cfif>


Any help would be appreciated!

Robyn

P.S., could anyone explain in detail why the above code actually works?  We
have some theories but would love a definitive answer...
Robyn Follen
Web Applications Developer
PreVision Marketing Inc. 
55 Old Bedford Road 
Lincoln, MA 01773
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to