CF Registry Disabled - Applicaiton Problem Fix

According to Yash, the CFRegistry tag was recently disabled. On CFMX this affects the CFApplication tag if client storage is left to it’s default or set to “Registry”.

At default, the CFApplicaiton tag has a parameter of clientstorage with a default value of Registry. By disabling the CFRegisty tag, this creates a conflit. To resolve the problem, the CFApplicaiton tag MUST include the clientstorage=“Cookie” or clientstorage=“Datasource_Name” to ensure that CFMX does not try to access the registry.

Here is an example of a good CFApplication tag.

Hatton if the clientstorage for a user key is cookie where on the server is the cookie stored?

[QUOTE=atomi]
Hatton if the clientstorage for a user key is cookie where on the server is the cookie stored?
[/QUOTE]

The variables are housed in the session memory for the duration of the visit and referenced by the cookies that are stored on the client’s browser.

HTTP cookie - Wikipedia

Hatton

Ive went ahead and did some reading on sounds like it might make more sense for me. Thanks

atomi