0
votes
1answer
10 views

Google APIs Client Library for Javascript and Offline Web Applications

My web application uses the Google APIs Client Library for Javascript https://code.google.com/p/google-api-javascript-client/. I would like to make the application usable in offline mode as well. It ...
1
vote
1answer
44 views

What happens when application cache fallback URLs are unloadable?

MDC states that the browser loads fallback files when network requests fails: Fallback entries are used when an attempt to load a resource fails. For example, let's say the cache manifest file ...
1
vote
0answers
74 views

HTML5 application cache update issue (updates from browser cache)

I have been goggling quiet a while now without any luck on this issue, hope someone can help. The issues concern the application cache, browser cache and proxies when developing an web-app with ...
2
votes
1answer
40 views

is it safe to keep confidential database table in appcache

I'm going to create a Webapp. As I want to allow the user to login on offline mode. Is it safe to keep confidential tables in Appcache of the browser for offline access?
4
votes
1answer
601 views

Make ASP.Net (C#) Web App Available Offline

I have been tasked with making my company's Web App available offline. Before I move to the actual development phase, I want to be sure that my current strategy will not turn out to be a bust. I ...
0
votes
1answer
163 views

Securing HTML5 AppCache and SQLite from deletion

I am developing a web application using HTML5 AppCache manifest for storing all the application artifacts (HTML pages, style sheets, scripts, etc.) and SQLite for storing forms data being submitted by ...
0
votes
1answer
2k views

Apache not assigning correct MIME type for .manifest HTML5 offline file

I'm running XAMPP apache web server and developing an HTML5 project and the .manifest file is not being 'assigned' the correct MIME type by the web server. If a user accesses my HTML5 web app and ...
1
vote
2answers
344 views

HTML5 appcache: what is the NETWORK: section really for?

I can't find any case where someone doesn't want to put all their URLs in the NETWORK: section: NETWORK: * If a resource isn't in the CACHE: section, nor in the NETWORK: section, the resource won't ...