Flex and Google Gears: sales force automation application with offline capabilities

salesbuilder.png

As a follow up to my previous post, here is the sample Sales Force Automation application I built to demonstrate the Flex/Google Gears integration, and that Kevin Lynch demonstrated during the Google Developer Day keynote last week in San Jose.

SalesBuilder uses the Google Gears Database API to save data to an embedded SQLite database, and the LocalServer API to enable offline access to the application.

In this hosted version, I removed the server component (to avoid having to watch all the bad things that can happen to a shared demo database). An XML document plays the role of server data. You work offline and the changes you make are saved to your local SQLite database. A simple data synchronization mechanism allows you to initially populate your local database, and to inform you of the changes that would be pushed to the server.

NOTE: Make sure you install Google Gears before running the application. Also, depending on the browser you use, make sure you check the security bar at the top of the content area: you may be required to explicitely allow Google Gears plugin (ActiveX in IE) to execute.

Part 1: Using the local database and simple data sync

  1. Click here to start the application.
  2. Click the Search button in the left drawer. Notice that there is no data (you haven’t populated your local database yet).
  3. Optionally start the SQLAdmin tool in another browser window/tab.
    • Enter “salesbuilder” as the database name
    • Click “New Query” in the menu bar
    • Type “select * from account” or “select * from contact”: no data
  4. In the SalesBuilder app, click the Sync button in the menu bar.
  5. Click the Search Button again: You now have data.
  6. If you started the SQLAdmin app, click the Execute button again and notice that your local database has been populated.
  7. In the SalesBuilder app, double-Click “Adobe” in the search results.
  8. Note that this is an MDI type of user interface. The list of open windows (panels) is available under “Open Items” in the drawer. You can click an item to restore it.
  9. Make some changes to the Adobe data (for example, change the phone number), and click “Save”.
  10. Click the Sync button again.
  11. On the Contacts tab, you can grab an org chart item with the mouse and move it around.
  12. To open the details view for a contact, either double-click an org chart item, or click “Show Grid” and double-click a contact in the datagrid.
  13. On the Market History tab, you can grab the chart with the mouse and move it left and right, adjust the time selection using the dividers in the bottom chart, etc.
  14. Continue to add and modify accounts and contacts, and click the Sync button to simulate data sync with the server.

Part 2: Accessing the application while offline

  1. Click here to access the application’s offline management page. Note that the options provided on this page could be integrated in the application itself.
  2. Click the Capture button. Wait a few seconds until the status message indicates that the application is available offline. The application has now been saved locally (in a Google Gears Managed Store).
  3. Disconnect from the network and disable your wireless connection.
  4. Clear your browser cache to make sure the application won’t be served from the cache
  5. Access the application again using its normal URL: http://coenraets.org/salesbuilder/salesbuilder.html
  6. You have access to the application and to your local database.

Source Code and Disclaimer

Click here to download the source code of the application.

It was definitely interesting to build this application and use some well known data access patterns at the client side of a web app. Look for example at the data access objects: AccountDAO and ContactDAO. In this application, I’m embedding SQL statements directly in the data access objects, but it is inevitable that layers of abstraction, ORM and data synchronization solutions will soon be available on top of the low level Gears API. In fact, the Flex Data Services provide a data synchronization API that could be integrated with Gears.

This application is a proof of concept and not a full featured application. Some modules of the application (like opportunities and activities) are not implemented in this version.

Apollo Version

Kevin also demonstrated an Apollo version of the same application. The Apollo version runs outside the browser just like a traditional desktop application. As such it also has additional features, like drag-and-drop between the app and the desktop, access to the file system, etc. I will make that version available as soon as the new Apollo beta goes public (very soon).

Credits to Mark Shepherd for the Springgraph component used for the org chart.

  • Digg
  • del.icio.us
  • Facebook
  • Google Bookmarks
  • DZone
  • LinkedIn
  • StumbleUpon
  • Twitter
This entry was posted in Flex. Bookmark the permalink. Post a comment or leave a trackback: Trackback URL.

31 Comments

  1. Mike Brunt
    Posted June 8, 2007 at 8:37 pm | Permalink

    Christophe this is indeed very exciting. I recall at Webapper, my last company, we were intrigued by what Central could offer and now we see the re-emergence of those on-line off-line capabilities.

    I am really looking forward to the Apollo version also.

  2. Posted June 9, 2007 at 5:49 am | Permalink

    FYI Christophe I am getting an, “Error DB Has No Properties” prompt when I try to follow your instructions above.

  3. christophe
    Posted June 9, 2007 at 7:52 am | Permalink

    Mike,
    Did you install Gears, and did you check the security bar at the top of the content area of your browser: you may be required to explicitely allow Google Gears plugin (ActiveX in IE) to execute.
    Christophe

  4. Eugene
    Posted June 12, 2007 at 4:22 am | Permalink

    Cool Demo ! Am trying to set it up on an internal IIS server to try it out but i don’t see the “salesbuilder.html” file in the source zip. Am I missing something ?

  5. Ahtsham Ali
    Posted June 17, 2007 at 12:01 pm | Permalink

    AOA
    I have dowloaded the code of SalesForce automaton tool from
    http://coenraets.org/blog/2007/06/flex-and-google-gears-sales-force-automation-application-with-offline-capabilities/.
    When I run it online version, it works well, but when I download the
    sourcecode, I donot able to understand how to run it. Any body let me
    know how to run it.

    Regards,
    Ahtsham

  6. Posted June 18, 2007 at 8:38 am | Permalink

    Hello! Good Site! Thanks you! uamowutont

  7. RioVic
    Posted July 3, 2007 at 12:52 pm | Permalink

    This is interesting as a standalone client. But the really interesting things would happen when the connection becomes available again, and the database would synchronize. Where is this part? Am I missing something?

  8. RioVic
    Posted July 3, 2007 at 1:10 pm | Permalink

    OK, now I get it. This is really super cool!

  9. Posted July 5, 2007 at 11:01 am | Permalink

    Awesome demo app Christophe! I ran into an issue that might help out people using flex builder in eclipse. I was able to take the source and build the project just fine, but after accessing it, nothing seemed to work other than the dashboard =( After poking around a bit, I figured out that I had to add the gears specific .js includes to the auto generated .html that flex builder creates. I added the following to the bin\salesbuilder.html and it worked like a charm =)

  10. Posted July 5, 2007 at 11:05 am | Permalink

    Hmmm stripped out the script includes. Second try

    <script type=”text/javascript” src=”gears_init.js” >< /script >
    <script type=”text/javascript” src=”flex_gears.js”>< /script>

  11. Posted November 30, 2007 at 6:42 pm | Permalink

    Hi!i glad to see U!
    .geico auto insurance

  12. Posted December 19, 2007 at 9:51 am | Permalink

    Oh, and did not know about it. Thanks for the information …

  13. Posted May 21, 2008 at 11:22 pm | Permalink
  14. rocknrollcar
    Posted July 24, 2008 at 2:18 pm | Permalink

    Thank you for the great tutorial

  15. Posted August 22, 2008 at 6:39 am | Permalink

    Cool Demo !

  16. Posted August 22, 2008 at 6:39 am | Permalink

    Thanks for the information …

  17. Posted August 22, 2008 at 6:40 am | Permalink

    Thank you for the great tutorial

  18. Vagner
    Posted April 24, 2009 at 2:16 pm | Permalink

    Good afternoon
    You would post an example of how to work with gears with flex + blazeds or explain how its integration with gears which create the local bank in sqlite and where he called the flex ..?
    thanks

  19. mendonca
    Posted April 29, 2009 at 12:29 pm | Permalink

    Ola…
    Poderia me explicar qual é o tipo de comunicação que faz depois que baixa os fontes para maquina local do cliente, e depois para enviar dados atualizados para o servidor, qual e o tipo de cominicação e qual e papel do sqlite nesta sua aplicação quando executado o arquivo go_offline.js?

  20. Posted July 12, 2009 at 3:33 am | Permalink

    Cool Demo ! Am trying to set it up on an internal IIS server to try it out but i don’t see the “salesbuilder.html” file in the source zip

  21. Posted July 17, 2009 at 3:56 pm | Permalink

    Very good, congratulations article

  22. Posted July 19, 2009 at 10:08 am | Permalink

    Awesome demo app Christophe! I ran into an issue that might help out people using flex builder in eclipse. I was able to take the source and build the project just fine, but after accessing it, nothing seemed to work other than the dashboard =( After poking around a bit, I figured out that I had to add the gears specific .js includes to the auto generated .html that flex builder creates. I added the following to the bin\salesbuilder.html and it worked like a charm =)

  23. Posted July 23, 2009 at 9:36 am | Permalink

    Cool Demo ! Am trying to set it up on an internal IIS server to try it out but i don’t see the “salesbuilder.html” file in the source zip. Am I missing something ?

  24. Posted July 23, 2009 at 11:51 am | Permalink

    This is interesting as a standalone client. But the really interesting things would happen when the connection becomes available again, and the database would synchronize. Where is this part? Am I missing something?

  25. Posted September 29, 2009 at 2:27 pm | Permalink

    thanks very good page and cool page super

  26. Posted November 24, 2009 at 6:27 am | Permalink

    how are you babyy

  27. Posted November 25, 2009 at 10:17 am | Permalink

    superb

  28. Posted January 13, 2010 at 10:38 pm | Permalink

    good demo ..

  29. Posted January 24, 2010 at 1:23 pm | Permalink

    Thank you for all, they are wonderful knowledges. I understand all.

  30. Posted February 13, 2010 at 3:53 pm | Permalink

    Very nice sharing, thank you.

  31. Posted March 11, 2010 at 10:17 am | Permalink

    cool demo thank admin

8 Trackbacks

  1. By links for 2007-06-09 on June 9, 2007 at 1:27 am

    [...] Christophe Coenraets » Flex and Google Gears: sales force automation application with offline capabilities SalesBuilder uses the Google Gears Database API to save data to an embedded SQLite database, and the LocalServer API to enable offline access to the application. (tags: application adobe Flex gears google java web) [...]

  2. [...] L’applicazione, creata proprio da Coenraets, è una applicazione di Sales Force Automation costruita in Flex che usa Gears per salvare i dati in un database locale SQLite quando si sta lavorando offline e sincronizza i dati con un server online una volta che ci si è nuovamente connessi. L’applicazione esiste in una versione browser-based, che utilizza Gears per l’accesso al database locale, e una applicazione AIR (Apollo) che invece utilizza direttamente il supporto per il database SQLite nativo del framework Adobe. [...]

  3. [...] This is the AIR version of the browser-based application I recently posted here. The database-related instructions below are therefore very similar. [...]

  4. By SemanticFind » » Google Gears on June 25, 2007 at 1:28 am

    [...] Волна июньских постов блогеров прошла про Google Gears .Напишу и я ;). Google Gears – это опенсорсное расширение для браузера которое помогает разработчикам создавать веб-приложения оффлайн.Google Gears состоит из трех модулей :Локальный сервер SQLite, База данных и AJAX-сковский WorkerPool Уже существует интеграция с фреймверками Flex , Dojo ну и естественно GWT Англицкий туториал Установить себе [...]

  5. [...] Son Post : Flex and Google Gears: sales force automation application with offline capabilities [...]

  6. [...] Vorschub wird der zukünftigen Nutzung allerdings die Integration von Google Gears in verschiedene AJAX-Libraries wie Flex und Dojo geben. [...]

  7. By Adobe AIR vs Google Gear | Solution Hacker on April 16, 2008 at 1:44 pm

    [...] Flex and Gear actually can work together! (Someone demonstrates this combination via building a sales force application) Share and Enjoy: These icons link to [...]

  8. [...] Coenraets has an interesting blog post of an offline SalesForce.com application written in Flex (an Apollo version is also available) that [...]

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>