InSync: Automatic Offline Data Synchronization in AIR using LCDS 2.6

LCDS 2.6 allows you to build AIR applications with automatic offline data synchronization. This feature leverages the SQLite relational database system embedded in the AIR runtime, but the advantage is that the data synchronization process is entirely automatic: you don’t have to write SQL statements or synchronization logic to keep your local database in sync with your central database.

I have been getting a number of questions related to this feature, so I decided to build a sample application that demonstrates how it works.

In this application the synchronization process is implicit. When you are online, the cache (a SQLite database) is automatically updated along with the server database to make sure the user can go offline with the latest data without explicitly triggering a synchronization process. When you are offline, the changes are saved in the local cache. If the network becomes available while working in the application, the application will detect the network status change and automatically synchronize data (send your offline changes to the server, and get changes made by other users while you were offline).

Installation Instructions

  1. If you haven’t already done so, install LCDS 2.6.
  2. Unzip insync.zip
  3. Copy the content of the sampledb folder in the sampledb folder of your existing LCDS directory
  4. Copy the content of the tomcat folder in the tomcat folder of your existing LCDS directory
  5. Add the following destination to data-management-config.xml

    <destination id="insync">
        <adapter ref="java-dao" />
        <properties>
            <source>lcds.samples.contact.ContactAssembler</source>
            <scope>application</scope>
            <metadata>
                <identity property="contactId" undefined-value="0"/>
            </metadata>
        </properties>
    </destination>
    

  6. Restart the sample database: run sampledb.bat (Windows) or sampledb.sh (Unix) in the sampledb directory
  7. Restart your application server

Quick Tour

  1. Install and run the AIR application. Notice the green light in the status bar indicating that the application is in online mode.

    Please upgrade your Flash Player This is the content that would be shown if the user does not have Flash Player 9.0.115 or higher installed.

  2. Double click a contact to view the contact details.
  3. Modify the data in a few fields and click Save. Your server console indicates that the contact has been updated.
  4. Click the + button in the application title bar. Enter a first name, last name, etc and click Save. Your server console indicates that the contact has been updated.
  5. Shut down the server
  6. Notice that the green light turns grey to indicate that the application is now working in offline mode.
  7. Repeat steps 2 to 4 above: changes are saved locally. Notice that the offline status (not modified, created, or updated is displayed in the contact form (bottom left corner)
  8. Restart the server.
  9. The green light appears in that status bar as soon as the server is up and running. Notice that LCDS automatically detects the offline changes and sends them to the server.

Comments

  1. In case data of the same item changes in both offline cache & online database.
    which data is taken?

  2. Forrest says:

    it seems great,may i use BlazeDS instead of using LiveCycle ?

  3. christophe says:

    Forrest, Offline sync is a feature of Data Management Services which is part of LCDS. Note that there is a free version of LCDS currently called LCDS Express.
    Christophe

  4. christophe says:

    @Rosenthal Ido: if you go back online and try to apply a change to an item that someone else has already changed in the central database, you will have a conflict. There is a conflict resolution API that you use to resolve this situation.

  5. Dan Vega says:

    I was just talking with a friend the other and we were brainstorming on how to accomplish this very task. Auto Sync of a local database with a server database is a very nice feature to have.

    Thanks!

  6. cp8r says:

    That’s great – I have been waiting for something like that!

    Thank you!

  7. Cato Paus says:

    WE need to vote again :) https://bugs.adobe.com/jira/browse/FP-247

    I realy hope we can have USB communication in AIR and Flash Player :)

    I can imagine many different type of applications which can communicate with different devices connected over USB, atleast my phone (over bluetooth or cable)…

    It would be great if AIR and Flash player can have USB API for those things, so that we (developers) are not forced to write socket-servers and take care of installation etc..

  8. Tristan says:

    Any chance you’ll be releasing the source behind your AIR app?

    Very cool btw.

  9. christophe says:

    Tristan, the source code for the AIR app is actually available in insync.zip.
    Christophe

  10. Flex Rules says:

    Can I use this progoram with my MySQL database? If so, how can I set it? Thank you so much anyone. This is a super cool program.

  11. Alberto says:

    Hi Christophe,

    Very useful and clean tutorial as usual. I had to change a couple of things ( most of them related to my eclipse developing environment ) to have this working but, finally, everything works fine now.

    Congratulations again for your work.

    Alberto

  12. Charly says:

    Hi Christophe,

    I know it’s not really the right place to ask this, but… :-)

    Is it possible (or if not is it planned) to have the Air runtime and application installers localized…?

    Thx.

  13. Martin Karlsson says:

    Really exited about this because currently we’re having to maintain a SQLlite db “manually” on a big project.

    Started testing this and got a run-time error… all I’m doing is creating a new DataService and setting the cacheID=”users”;

    userDataService = new DataService(“UserService”);
    userDataService.cacheID = “users”;

    ReferenceError: Error #1065: Variable mx.data::LocalStoreFactory is not defined.
    at mx.data::DataStore/get localStore()[C:\depot\flex\branches\enterprise_corfu_b2\frameworks\projects\data\src\mx\data\DataStore.as:2670]
    at mx.data::DataStore/set cacheID()[C:\depot\flex\branches\enterprise_corfu_b2\frameworks\projects\data\src\mx\data\DataStore.as:317]
    at mx.data::ConcreteDataService/set cacheID()[C:\depot\flex\branches\enterprise_corfu_b2\frameworks\projects\data\src\mx\data\ConcreteDataService.as:231]
    at mx.data::DataService/set cacheID()[C:\depot\flex\branches\enterprise_corfu_b2\frameworks\projects\data\src\mx\data\DataService.as:428]
    at LCDSX/init()[C:\Documents and Settings\Karlsson\My Documents\Flex 3\LCDSX\src\LCDSX.mxml:14]

    Any pointers?

    Thanks

  14. Martin Karlsson says:

    Nevermind – adding the airfds.swc to the project helps :)

  15. Martin Karlsson says:

    Anyone have problems with going back online after a network disconnection [using authentication]? I’m the client is always successful in sending data [like dataService.deleteItem] but ~60% of the time it’s not receiving updates from the server [although it fill()'s just fine].

    Any pointers would be greatly appreciated. / Thanks

  16. Martin Karlsson says:

    Found that if I disconnect using “ipconfig /release” I get the 60% failure – but if I disconnect the ehternet cable and then reconnect it something is cleared up automatically and it works fine.

    I’m trying to simulate a rather unique network environment :) – is there a way to “manually reset” or “clear” the RTMPChannel/ChannelSet/DataService such that it gets into the same state as it was before starting to use it [other than restarting the app]?

  17. Subhadip Chakraborty says:

    If I add delete and update lots of data while offline and then come to online while running the application its gets synchronized fine.

    But if i close the application after making changes and again start it in offline status if goes failed and show s the alert “Cannot Fill”……

    It is going fine if i add only the first name or change the phone number…..

    but if i add a full details of a person and do the said process it fails….

    please help…. and how to improve it?

  18. florence kolberg says:

    hi,

    I have installed LCDS 2.6 and started the server, after I started the sample database.
    When I run the inSync app. I get an green online button, but I also get a “cannot fill” message popping.
    Could anyone help me solving that issue? it looks like the contactdb.script is not run or something.

    Thanks,
    Florence

  19. florence kolberg says:

    Hi,

    I have been debugging the insync application – it still does not work on my computer for some reasons – and I get the following error message:

    Error: Unable to initialize destinations on server: ["insync"]
    at ()[C:\depot\flex\branche\enterprise_corfu_rc\frameworks\projects\data\src\mx\data\DataStore.as:2347]
    at ()[C:\depot\flex\branches\enterprise_corfu_rc\frameworks\projects\data\src\mx\data\DataStore.as:2363]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.data::SQLDBCache/dispatchStatusEvent()[C:\depot\flex\branches\enterprise_corfu_rc\frameworks\projects\airfds\src\mx\data\SQLDBCache.as:540]
    at Function/http://adobe.com/AS3/2006/builtin::apply()
    at mx.rpc::AsyncDispatcher/timerEventHandler()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AsyncDispatcher.as:50]
    at flash.utils::Timer/_timerDispatch()
    at flash.utils::Timer/tick()

    If anyone has a pointer to how I can solve that problem, I gladly take it.

    thanks
    Florence

  20. Güzel bilgiler..Teşekkürler…

  21. Joe says:

    I’m having the same issue as Florence…. can’t seem to quite figure this one out. Could really use the help on this one if someone knows what’s going on.

    thanks,

    Joe

  22. onur says:

    Greatest AIR app interface designer ever

  23. sohbet says:

    Güzel bilgiler..Teşekkürler…

  24. Damian Vuckovich says:

    Yah i’m getting the same problem as Florence and can’t figure it out myself. Any pointers would be useful. The debug statements kept on saying the server producer was disconnecting right before i’d see the error message.

  25. nimesh nanda says:

    Hi,

    please help me how to synchronize online and offline data in Flex (AIR) and Ruby on Rails ..

    Regrads,
    Nimesh nanda

  26. Sky says:

    I’m currently having the same problem as “Martin Karlsson” (from June 27th, 2008 1:23 pm). I added the airfds.swc to the compilation line… and it doesn’t work. :( It did work for a while, but then I had to change my DSN source in CF8 to point to a different DB. I don’t think that should change anything…

    Any ideas?

  27. kauser says:

    Hi,
    I am working on a simple application using flex and air as the presentation layer, java as the back end and the data base which i am using is ms access. Can you tell me how to use LCDS with an application whose back end is written in java. Thanks in advance.

  28. Jin Lei says:

    To make the installation instruction more clear,

    5. Add the following destination to data-management-config.xml

    actually, add the following destination to

    tomcat folder, \webapps\lcds-samples\WEB-INF\flex\management-config.xml

  29. kauser says:

    Hi,
    I went through the sample lcds application for data synchronization and created a similar application. I am getting the following errors:
    1. Unable to initialize destinations on server.
    2. No destination with id ‘[my id]‘ is registered with any service.
    Can you tell me what could be the possible cause of this error. Thanks.

  30. ED says:

    Is this possible using Coldfusion 8 alone (From what I understand LiveCycle Data Services is integrated in Coldfusion 8) ? Thanks in advance.

  31. Souvik Mukherjee says:

    I am developing an application and I am in a position where I can push messages to one or many AIR applications and the selection of AIR application will be decided by LCDS server. Here I am making use of JMS along with JMS adapter. I need a way to receive an acknowledgement to LCDS server when the message is delivered.
    I have found few application where JMS subscriber is sending acknowledgement to JMS producer, but I need a way where JMS producer is getting acknowledgement from each Flex client.

  32. So I spent three days on this, and I think I solved or at least identified a work around for the problem that several guys including florence were having above. I tried to write down all the steps I took to get this demo running in three parts. Part three is here and has the fix of compiling in your services to fix the dreaded Error: Unable to initialize destinations on server: ["insync"]

    Hope it helps

    http://somehardwareguy.blogspot.com/2009/03/part-3-lcds-insync-example-it-works-and.html

  33. Sam says:

    Hi Christophe,

    Is there any limitation on the amount of datasets you can cache offline? I am working on a rather large AIR/LCDS/Flex/ColdFusion application and the offline caching seems to work fine when using one dataset but if I enable the others I get one of two errors…

    Error 1:

    Database must be connected to perform this operation

    Error 2:

    Nested transactions are not supported

    The application runs fine and super-fast when I disable saveToCache on my DataService objects but fails when I enable it.

    ANY help would be greatly appreciated.

  34. Is this possible using Coldfusion 8 alone (From what I understand LiveCycle Data Services is integrated in Coldfusion 8) ? Thanks in advance

  35. Mike says:

    This is realy. The application runs fine and super-fast when I disable saveToCache on my DataService objects but fails when I enable it.

  36. Edward Lane says:

    There’s good info here. I did a search on the topic and found most people will agree with your blog. Keep up the good work mate!

  37. how are you baby melisa

  38. Jalousien says:

    that is a awesome tool

  39. chat says:

    that is a awesome tool

  40. that is a awesome tool, thank you.

  41. Sohbet says:

    good post admin, thank you very much

  42. Andi says:

    Can I use this progoram with my MySQL database? If so, how can I set it? Thank you so much anyone. This is a super cool program.

    I would also like to know.

  43. Eşref Atak says:

    Is there any way to do similar application without write any server side Java code? Thank you for your entry.

  44. Abhishek D.V. says:

    Mr. Coenraets,

    I am thinking of implementing your application, but I don’t have LiveCycle DS 2.6. Instead, I am using LCDS 2.5. Will this pose any problem? That is, will I have to make any modifications to the code and/or settings or will the application work fine with LCDS 2.5?

  45. chat sitesi says:

    I am thinking of implementing your application, but I don’t have LiveCycle DS 2.6. Instead, I am using LCDS 2.5. Will this pose any problem? That is, will I have to make any modifications to the code and/or settings or will the application work fine with LCDS 2.5?

  46. that is a awesome tool.

  47. Top Sehr Gut…………..

  48. chat says:

    Well done and good luck with your very great work thanks

  49. rottweiler says:

    thanks for information

  50. very good contributing very helpful thank you.

  51. sohbet says:

    thanx so much

  52. thanx so much

  53. mohsin says:

    is it possible using lcds can we store the data to mysql

  54. isvicresesli says:

    Thank you, I´ve tried Piwik and it worked very good!

  55. isvicresesli says:

    Thank you, I´
    ve tried Piwik and it worked very good! super dancke

  56. güzel bilgiler.

  57. slims says:

    Auto Trader compares over 400 car insurance prices
    to find you the right policy.

  58. Maikl says:

    A farm is a place of growing, nurturing, life, hope and peace. and A farm can be a destination location, a place of sharing and learning for those wishing to experience a touch yesteryear in the rural whether it be for an hour or two, or an entire day

  59. Krisi says:

    The Debian Free Software Guidelines

  60. Jalousien says:

    Thank You for the Automatic Offline Data Synchronization Quick Tour.

  61. sumasearch says:

    Paylasdigin icin tesekkürler ederim !

  62. As an independent financial adviser, broker or agent, you want to ensure that your clients are getting the best international private medical insurance to suit their needs.

  63. chat says:

    very good, thanx

Trackbacks

  1. [...] InSync: Automatic Offline Data Synchronization in AIR using LCDS 2.6 : Christophe Coenraets (tags: lcds read air) Posted in del.icio.us [...]

  2. [...] Online/Offline Synchronizaton with AIR and LCDS at 360|Flex San Jose, but Christophe Coenraets just published a wicked example of how it works called InSync. Well worth checking out. This entry was posted on Tuesday, May 20th, 2008 at 5:26 pm and is [...]

  3. [...] then points us to a resource that can help. Using LCDS, Christophe Coenraets has just published a sample application called InSync (zip file) that shows developers how to build [...]

  4. [...] then points us to a resource that can help. Using LCDS, Christophe Coenraets has just published a sample application called InSync (zip file) that shows developers how to build [...]

  5. [...] Coenraets has an AIR demo for offline data syncing with LiveCycle [...]

  6. pocker game holdem texas hold em…

    tenement,Gus Campbellsport grocer Crusoe,swampy …

  7. [...] got the slides for anyone who wants to jump in and try it out. I highly suggest checking out Christophe’s demo from which I drew a bunch of my inspiration. He’s implemented the functionality in Java while [...]

  8. [...] got the slides for anyone who wants to jump in and try it out. I highly suggest checking out Christophe’s demo from which I drew a bunch of my inspiration. He’s implemented the functionality in Java while [...]

  9. [...] are several resources describing in details this feature in detail and providing some samples – Cristophe Coenraets blog, an article on Inside RIA and the developer [...]

Speak Your Mind

*