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
0
votes
0 answers

Store persistent data using javascript or other client side library

There is a way to write and get persistent data (i.e., that persists between page reloads and is accessible offline) in the browser using JavaScript or any client side language?
0
votes
3 answers

Pinning folder with Win32_OfflineFileCache fails: "Provider is not capable of the attempted operation"

I am writing a Powershell utility that attempts to enable Offline files, then pin a drive to them. I'm using this documentation for the pin operation: http://msdn.microsoft.com/en-us/library/windows/desktop/bb309186(v=vs.85).aspx So I have this…
Casey
  • 3,307
  • 1
  • 26
  • 41
0
votes
1 answer

IBM Worklight - Offline storage for Windows environment

I want to create an offline storage using IBM Worklight in the Windows environment. Usually we will use JSONStore for offline storage but that works only for the iOS and Android environments. Can anyone suggest a solution for offline storage for…
usha
  • 15
  • 1
  • 5
0
votes
1 answer

Appcache load fails with jQuery callback parameter

I have the HTML template resource "steg3rad.html" stored in my appcache manifest. In my javascript file I fetch the template file using an jQuery AJAX GET request. Sometimes jQuery adds a callback parameter to the GET request. This results in Chrome…
x3m
  • 533
  • 5
  • 16
0
votes
1 answer

How to detect when the last file of the manifest file is updated?

I'm building an Offline HTML5's App, which has several pages inside (10 to be more specific). When I need to change any of these pages, I simply change the manifest file to instruct the browser to update all files (As the HTML5 documentation…
0
votes
1 answer

Check if Google Maps Android V2 didLoad / isCached Map (OFFLINE MODE)

Hey I want to be able to manually check or subscribe to a service which can notify me if the map was unable to load (in offline mode) due to it not being cached at the deep enough level. This would be similar to the v1 method of…
Aiden Fry
  • 1,672
  • 3
  • 21
  • 45
0
votes
1 answer

HTML5 Cache Manifest Fallback Page

I am trying to get the Cache Manifest to fallback to an offline.aspx page when offline. So when the current page that contains the following cache manifest is loaded online it displays as normal, but when there is no internet connection offline.aspx…
theringostarrs
  • 11,940
  • 14
  • 50
  • 63
0
votes
2 answers

How to remove auto appended Html tag in visual force page?

I am working on html5 offline mode in sales-force. I added following line to cache current page. I turn off the developer mode and check the console. It is by default taking parent tag as follow:
0
votes
0 answers

offline data entry for a web application

I am developing a php data-entry web application that is required to have offline data entry capabilities since it will be used in places with unstable internet. That is the users should have the option of inputing data into the system even when not…
zurik
  • 491
  • 1
  • 8
  • 21
0
votes
2 answers

HTML5 Offline storage not working

This is the code provided by the W3C example for offline web storage : http://www.w3.org/TR/offline-webapps/