I need to be able to run HTML forms offline. I mean, they should work without a direct connection to the web server.
In an application that I wrote more than 5 years ago, I did this by running my own protocol handler - when the user initiated the submit form, the received HTTP request was recorded locally. At a later time, when the connection to the server becomes available, the synchronization program goes through the collected requests and sends them to the server, collects the responses and saves them again locally for later use.
That was then. Now another client approached us with a very similar request. What technology do you guys think I'm using today?
HTML5 support is very limited so far. Google gears? Or do I need to go back and continue using the protocol handler and user synchronizer?
source
share