Flex and Google Gears: sales force automation application with offline capabilities
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
- Click here to start the application.
- Click the Search button in the left drawer. Notice that there is no data (you haven’t populated your local database yet).
- 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
- In the SalesBuilder app, click the Sync button in the menu bar.
- Click the Search Button again: You now have data.
- If you started the SQLAdmin app, click the Execute button again and notice that your local database has been populated.
- In the SalesBuilder app, double-Click “Adobe” in the search results.
- 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.
- Make some changes to the Adobe data (for example, change the phone number), and click “Save”.
- Click the Sync button again.
- On the Contacts tab, you can grab an org chart item with the mouse and move it around.
- 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.
- 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.
- 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
- 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.
- 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).
- Disconnect from the network and disable your wireless connection.
- Clear your browser cache to make sure the application won’t be served from the cache
- Access the application again using its normal URL: http://coenraets.org/salesbuilder/salesbuilder.html
- 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.
Comments
20 Responses to “Flex and Google Gears: sales force automation application with offline capabilities”
Leave a Reply









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.
[...] 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) [...]
FYI Christophe I am getting an, “Error DB Has No Properties” prompt when I try to follow your instructions above.
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
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 ?
[...] 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. [...]
[...] This is the AIR version of the browser-based application I recently posted here. The database-related instructions below are therefore very similar. [...]
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
Hello! Good Site! Thanks you! uamowutont
[...] Волна июньских постов блогеров прошла про Google Gears .Напишу и я ;). Google Gears - это опенсорсное расширение для браузера которое помогает разработчикам создавать веб-приложения оффлайн.Google Gears состоит из трех модулей :Локальный сервер SQLite, База данных и AJAX-сковский WorkerPool Уже существует интеграция с фреймверками Flex , Dojo ну и естественно GWT Англицкий туториал Установить себе [...]
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?
OK, now I get it. This is really super cool!
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 =)
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>
[...] Son Post : Flex and Google Gears: sales force automation application with offline capabilities [...]
[...] Vorschub wird der zukünftigen Nutzung allerdings die Integration von Google Gears in verschiedene AJAX-Libraries wie Flex und Dojo geben. [...]
Hi!i glad to see U!
.geico auto insurance
Oh, and did not know about it. Thanks for the information …
[...] Flex and Gear actually can work together! (Someone demonstrates this combination via building a sales force application) Share and Enjoy: These icons link to [...]
Buying A Sauna? Read This Before You Buy Your First Sauna