Questions tagged [offline-caching]

Offline caching typically means storing locally the data obtained from a remote service to make it possible to browse the data even when there is no connection to the storage.

The details of the implementation depend on actual needs of the application; however, in any implementation there is a local cache of data obtained from the service, so some requests for the remote data may succeed in that cache. It depends on the application logic how the cache is updated, and whether and how the user may control that.

A good example of an application that uses offline caching is a desktop e-mail client. It downloads all new mail from the server to the user's computer during the sync session; the user may browse the mail and write the replies; the outgoing mail will be sent when the application perfoms the next sync.

714 questions
3
votes
1 answer

What causes the Chrome wants to permanently store large data message?

I'm trying to figure out which storage mechanism causes the wants to permanently store large data message on chrome. Is it indexdb, filesystem api, offline storage api or something else? Thanks.
Harry
  • 52,711
  • 71
  • 177
  • 261
3
votes
1 answer

Vimeo API: Is there a way to download a version of one of your videos?

I was hoping to have a way to take videos uploaded via the API that were transcoded and to essentially pick a quality level or file format and download the resulting video to a local device. Essentially this would be a way to download a video for…
KenLFG
  • 950
  • 7
  • 15
3
votes
2 answers

Prevent offline iphone webapp from opening link in Safari

I’m developing a website that will work with mobile safari in offline mode. I'm able to bookmark it to the home screen and load it from there. But, once opened from the home screen, clicking on certain links will jump out of the app and open in…
3
votes
2 answers

Right way to design a mobile ASP.NET MVC 4 data entry application with HTML5 offline capabilities

I'm creating a PoC of an ASP.NET MVC 4 mobile application (tablets) for field operators that needs to support offline capabilities. It's a relatively simple data entry application with a WebAPI backend that will use a SQL database as persistent…
GR7
  • 5,083
  • 8
  • 48
  • 66
3
votes
1 answer

Is there any JavaScript framework that supports offline scenario in MVC 4 SPA?

Steve Sanderson presented MVC 4 SPA "Delivery Trucker" for mobile devices with offline support using upshot.js JavaScript framework. http://channel9.msdn.com/Events/TechDays/TechDays-2012-Belgium/199 It seems that the MVC team dropped support for…
mitaka
  • 2,159
  • 1
  • 30
  • 30
3
votes
2 answers

LocalStorage not passing to standalone web app

I just need to hold onto some simple data in an iOS standalone web app (using apple-mobile-web-app-capable etc). The data is defined when the user visits the site, and saved to localStorage.name etc. That same page is "saved to Home Screen" but when…
Ben Saufley
  • 3,259
  • 5
  • 27
  • 42
3
votes
1 answer

How To: Home Screen Apps and offline usage on ios 6 – cache manifest obsolete?

Since apple's ios update to ios 6 data/local storage for Web Apps and Home Screen Apps is handled differently than before. Before ios 6 they shared the same data. Now home screen apps have their own data like native apps (see here: iO6 and Data…
TimG
  • 985
  • 3
  • 14
  • 24
3
votes
1 answer

strange behaviour with cache.manifest / offline usage of web app saved to home-screen on ipad ios6

I just discovered some strange behaviour on iPad with the new iOS 6. I'm testing a web app for offline usage. The web app is no more than a static website with a cache manifest, so no special frameworks like sencha touch or tools like phnoegap are…
TimG
  • 985
  • 3
  • 14
  • 24
3
votes
2 answers

HTML5 offline appcache: Force refresh of all content?

My small HTML5 app needs to be re-deployed on a server. I understood I only had to touch the .appcache file to have every browser update to the last version of the files upon next visit. The manifest looks like this: CACHE MANIFEST #Version:…
Jem
  • 6,226
  • 14
  • 56
  • 74
3
votes
1 answer

Walk around Firefox's offline storage warning?

I am developing an web app with HTML5 offline browsing support. I wrote a manifest file as shown below: CACHE MANIFEST CACHE: audio/a.ogg NETWORK: * When I visit my app in Firefox, A warning message prompts saying: 'This website [192.168.2.14]…
ChuanRocks
  • 1,528
  • 1
  • 16
  • 22
3
votes
2 answers

Failed to Parse Manifest : Using asp.net

I am following Stephen Walther's guide and everything builds without errors. However once I run the application in Chrome I get this error message: Application Cache Error event: Failed to parse manifest http://localhost/website/Manifest.ashx And…
Mitchell Byrd
  • 73
  • 1
  • 4
  • 10
3
votes
1 answer

Is it possible to disable off-line caching for Firefox in ASP.NET (at the server level)?

How do I disable offline caching for firefox in ASP.NET or in IIS? I found this post: Disabling browser caching for all browsers from ASP.NET This doesn't address the issue completely. It just disables caching from the back button (when not in…
pqsk
  • 2,124
  • 3
  • 23
  • 28
3
votes
2 answers

Show Network Error in android

I have created appliction with webview. if i have do any action and the net is disconnected i want to display one alert. I have tried the following, added this in oncreate method. public class AndroidNetTestActivity extends Activity { public…
Ponmalar
  • 6,871
  • 10
  • 50
  • 80
3
votes
0 answers

How do I delete just the offline-mode cache within an android WebView programmatically?

I am trying to delete my offline-mode (defined in cache.manifest) files without deleting any WebSQL databases or local storage data. I have been experimenting with deleting cache files and have used related answers on stackoverflow and elsewhere to…
James
  • 710
  • 6
  • 19
3
votes
1 answer

Offline storage management for android

Theme : Newspaper updates in android application. How to fetch or retrieve data from server and post updates on android application . How to manage offline storage means whenever there is no internet connection how the data gone be updated on…
Rizvan
  • 2,335
  • 2
  • 23
  • 42