StrataFrame Forum

Client Caching

http://forum.strataframe.net/Topic8985.aspx

By Chan - 5/23/2007

Hi,

I am wishing to have client caching feature which allow user to continue their works even though network connection is down. I know I can serialize/deserialize BO to xml manually. However, it is just now enough. I hope the datalayer can auto detect connection, or at least manually set to offline mode. If offline, all data will be store and retrieve from local caching. Once the connection online again, all the data can be update back to server automatically or run manually.

Thank you

By StrataFrame Team - 5/23/2007

There isn't a caching layer within SF.  You can handle connection exceptions within your app and swap the connection string over to a local SqlServer Express instance, but that's about as close as you can get to a completely independent application without writing the data to XML.
By Chan - 5/24/2007

Hi,

I think the hard part is how to sync back the data to server. Relication is not east to configure and difficult to troubelshoot if any problem.