
January 24th, 2012, 05:40 PM
|
|
Moderator
|
|
Join Date: Jun 2002
Location: Raleigh, NC
|
|
|
It could be. Client and Session are two different scopes. So data in the session scope isn't available in the client scope, and vice versa. Neither of these has anything to do with the form scope, by the way. But if data from the form scope is being put into one of the shared scopes (session or client), and some other code is looking for it in the other scope, it won't be there.
Does this application use CFCs? Depending on the server load, if the data is stored in a CFC within the session scope you can also get race conditions and threading issues if updates to the session-scoped data are not properly locked.
That said, without access to the code to run locally or access to the server, this is going to be extremely difficult to debug.
Last edited by kiteless : January 24th, 2012 at 05:44 PM.
|