active questions tagged offline - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T01:40:28Zhttp://stackoverflow.com/feeds/tag/offlinehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1827795/is-ado-net-data-service-offline-astoria-offline-dead-any-plan-b0 Is ADO.Net Data Service Offline (Astoria Offline) dead? Any Plan B?danielkwan2009-12-01T17:50:39Z2009-12-01T17:50:39Z
<p>We are trying to convert out old school client server application into a N-Tier application with synchronization and offline support using all Microsoft technology (we are a total .Net and SQLServer shop). We want to focus on writing business logic instead of spending time on pluming, so we are going to use as much existing Microsoft pluming technology as possible.</p>
<p>So far we decided to use SQL Server Compact edition with WinForm/WPF thick client, SQL Server 2008 on the server, Microsoft Sync Framework to do synchronization between client SQL DB and server SQL DB. So far so good.</p>
<p>Trouble comes as when we try to implement the "N Tier" part. Our current application is pretty SOA. Every data access call is done thru web service. So naturally we were thinking of using ADO.Net Data Service. Then it came a pleasant surprise to us that there's something called ADO.Net Data Service Offline (Astoria Offline), which allow us to make data access call through web service, support Synchronization, and even support offline. Suddenly we started to believe that heaven really is a place on earth.</p>
<p>And then yesterday our teammate who's in charge of researching on "Astoria Offline" telling us that "Astoria Offline is dead" based on the blog post ( <a href="http://blogs.msdn.com/astoriateam/archive/2009/03/07/announcing-project-codename-astoria-offline-alpha-preview.aspx" rel="nofollow">http://blogs.msdn.com/astoriateam/archive/2009/03/07/announcing-project-codename-astoria-offline-alpha-preview.aspx</a> ) . We suspected that he's on crack but didn't want to challenge him. The fact is that Astoria Offline is still in pre-alpha mode, and we need a production solution.</p>
<p>So other than Astroia Offline, is there any other similar solution that allow us to use Microsoft Sync Framework in N-tier setting that also support Offline mode?</p>
http://stackoverflow.com/questions/1805638/html-forms-working-offline1HTML forms working offlinemfeingold2009-11-26T21:07:19Z2009-11-27T10:01:36Z
<p>I need to be able to run HTML forms offline. I mean they have to work without direct connection to the web server. </p>
<p>In an application I wrote over 5 years ago I did it by implementing a custom protocol handler - when a user initiated form submit the resulting HTTP request was recorded locally. At later time when a connection to the server becomes available a synchronization program loops through collected requests and submits them to the server collects the responses and again saves them locally for later use.</p>
<p>That was then. Now another customer approached me with a very similar request. What technology do you guys think I should use today? </p>
<p>Support for HTML5 is very limited just yet. Google gears? Or should I go back and continue using the protocol handler and custom synchronizer?</p>
http://stackoverflow.com/questions/1140105/iphone-web-apps-running-as-native-apps4iPhone web apps running as native appsHenrikb42009-07-16T20:28:25Z2009-11-23T14:36:49Z
<p>The browser on the iPhone is capable of using advanced web technologies introduced in HTML5. One of these is the app cache that allows web pages to run on the client, from the cache, without a connection to the internet. Together with Local Storage you can also save data permanently "in" the page.</p>
<p>My question is, would it then be possible to make a website that when visited and set as a web clip (bookmark on the home screen), could be accessed again, at any moment. Using HTML5, Javascript and css, you can make some very good apps and at the same time avoid the pricey developer fee, the harsh app approval and the single platform development platform?</p>
<p>Or am I just dreaming?</p>
http://stackoverflow.com/questions/252658/can-offline-web-apps-be-a-replacement-for-desktop-apps0Can offline web apps be a replacement for desktop apps?Bless Yahu2008-10-31T05:14:12Z2009-11-23T00:00:02Z
<p>I work on a desktop sales app that is run off a tablet and was wondering if this and other "traditional" desktop tablet applications could be viable as a offline web application. The main difference with tablet applications being the inking support. I think a web app can get close with browser gestures.</p>
http://stackoverflow.com/questions/231132/wininets-internetoptionignoreoffline-doesnt-work0Wininet's INTERNET_OPTION_IGNORE_OFFLINE doesn't work?mhenry13842008-10-23T19:33:44Z2009-11-19T21:00:05Z
<p>I'm trying to get Wininet to ignore Internet Explorer's "Work Offline" mode, for both HTTP and FTP.</p>
<p>So I'm trying to use InternetSetOption() with INTERNET_OPTION_IGNORE_OFFLINE. The documentation says "This is used by InternetQueryOption and InternetSetOption with a request handle." However, you can't get a request handle because if IE is in Work Offline mode then InternetConnect() will always return a null handle. Without a connection handle you can't get a request handle. So I tried using it with an InternetOpen() handle and a NULL handle. Both failed with ERROR_INTERNET_INCORRECT_HANDLE_TYPE.</p>
<p>Is there a way to get this option to work? I found a reference on an MS newsgroup from 2003 that INTERNET_OPEN_TYPE_PRECONFIG is "broken". 5 years later with IE8 beta 2 and they still haven't fixed it? Or am I doing it wrong.</p>
<p>[edit]<br/>
I wasn't quite correct. InternetConnect() always returns null if you are on "Work Offline" mode and using FTP, but it returns a valid handle if you are using Http. However, it still doesn't work even with a request handle.</p>
<p>If I am set to "Work Offline" and I call</p>
<pre>
BOOL a = TRUE;
::InternetSetOption(hData, INTERNET_OPTION_IGNORE_OFFLINE, &a, sizeof(BOOL));
</pre>
<p>on the handle from </p>
<pre>
HINTERNET hData = HttpOpenRequest(hInternet, L"POST", path, NULL, NULL, NULL, flags, 0 );
</pre>
<p>the InternetSetOption() call succeeds.<br />
However, the call to HttpSendRequest() still fails with error code 2 (file not found), same as it does if I don't set the option.<br />
Same thing if I call</p>
<pre>
::InternetSetOption(hData, INTERNET_OPTION_IGNORE_OFFLINE, 0, 0);
</pre>
http://stackoverflow.com/questions/1730759/configuring-lighttpd-php5-and-mysql5-for-a-no-supervision-installation-1Configuring Lighttpd, PHP5 and MySQL5 for a no-supervision installation...MinkoSoft2009-11-13T17:30:08Z2009-11-13T17:30:08Z
<p>I'm creating a script that'll work on a Lighttpd, PHP5 and MySql5. The point is, it must be full-offline script installed and configured with all the requirements by one installer. It's a bit modified wiki thing. How to do a such thing?</p>
http://stackoverflow.com/questions/1679889/clickonce-cd-setup-tries-to-connect-to-the-internet3ClickOnce CD setup tries to connect to the InternetAnax2009-11-05T11:18:43Z2009-11-09T08:24:10Z
<p>I'm trying to deploy an application built with VS2008 Express. The idea is to upload the files to a webserver (installation via website) and at the same time offer offline (CD) installations to some users which do not have Internet connection.</p>
<p>In the Publish options I left the <code>Installation Folder URL</code> blank, I unchecked the option <code>The application should check for updates</code> (since I'm taking care of the updates check manually) and I filled in the option <code>Update location (if different than publish location)</code>.</p>
<p>When I'm trying to test the offline installation, the application cannot be installed. I get an error "Application download did not succeed. Check your network connection..." and when pressing the Details button, I'm reading the following error:</p>
<blockquote>
<ul>
<li>Activation of C:\Install\myapp.application
resulted in exception. Following
failure messages were detected:
<ul>
<li>Downloading <a href="http://myserver.com/myapp.application" rel="nofollow">http://myserver.com/myapp.application</a>
did not succeed.</li>
<li>Unable to connect to the remote server</li>
<li>A socket operation was attempted to an unreachable network
195.42.142.11:80</li>
</ul></li>
</ul>
</blockquote>
<p>Why is it that, although all files are present, the installation is trying to download the files from the Internet?</p>
<p>Finally, when I remove the server URL from the <code>Update location</code>, everything normally. Do I need to create two different setups each time I need to update the application? Or is there another solution?</p>
<p><hr></p>
<p><strong>Edit</strong>:</p>
<p>Further tests proved that offline installation works normally in Windows XP, but it doesn't work in Windows 7. In the later case, using the same installation files, the installer tries to download the application from the Internet, instead of using the local .deploy files.</p>
<p>No ClickOnce gurus available?</p>
http://stackoverflow.com/questions/1059640/facebook-offline-access-step-by-step2Facebook offline access step-by-stepBen2009-06-29T18:06:27Z2009-11-05T17:18:42Z
<p>After searchinge litteraly 1 day on fb and google for an up-to-date and <em>working</em> way to do something seemingly simple:</p>
<p>I am looking for a step-by-step explanation to get offline_access for a user for a facebook app and then using this (session key) to retrieve offline & not within a browser friends & profile data.</p>
<p>Preferrably doing this in the Fb Java API.</p>
<p>Thanks.</p>
<p>And yes I did check the facebook wiki.</p>
<p>Update: Anyone? </p>
<p>this:
<code>http://www.facebook.com/authorize.php?api_key=<api-key>&v=1.0&ext_perm=offline_access</code>
gives me offline_Access, however how to retrieve the session_key?</p>
<p>Why can't facebook just do simple documentation, I mean there are like 600 people working there?</p>
<p>The seemingly same question:
<a href="http://stackoverflow.com/questions/617043/getting-offlineaccess-to-work-with-facebook">http://stackoverflow.com/questions/617043/getting-offlineaccess-to-work-with-facebook</a>
Does not answer how to retrieve the session key</p>
<p>Edit: I am still stuck with that. I guess nobody really tried such a batch access out yet...</p>
http://stackoverflow.com/questions/189430/javascript-how-to-detect-that-the-internet-connection-is-offline9JavaScript: How to detect that the internet connection is offline?Daniel Silveira2008-10-09T22:23:49Z2009-10-29T12:38:23Z
<p>How to detect that the internet connection is offline in JavaScript?</p>
http://stackoverflow.com/questions/1637930/offline-web-application0Offline Web ApplicationNishaz Salam2009-10-28T15:16:14Z2009-10-28T20:42:00Z
<p>We have a .NET Sales Web Application for which Offline capability needs to be added. i.e The users can access(read,edit,create) the leads,oppurtunities and prospects even if they are not connected to the network and later when they come online, automatic Syncronization needs to happen with the underlying database(which is Oracle). </p>
<p>We know that there is Google gears and Adobe AIR out there. Which is best suited for .NET web applications??</p>
http://stackoverflow.com/questions/436670/local-html-file-ajax-call-and-jquery-woes2Local html file AJAX Call and jQuery WoesSuperdumbell2009-01-12T19:28:24Z2009-10-24T18:24:08Z
<p>I'm working on a offline version of a website using jQuery and some xml files. I'm running in to a problem in jQuery when I do a $.ajax call on a xml file jQuery throws a error.</p>
<p>When I look at the error I can tell its loading the XML file because its in the error's responceText property. It seams to work just fine in Firefox.</p>
<p>This is how my call looks</p>
<pre><code>$.ajax({
type: "GET",
url: "Modules/" + ModuleID + "/ModuleContent.xml",
dataType: "xml",
success: function(x) { xml = x; ProcessXML(); },
error: function(x) { alert(x.responceText); }
});
</code></pre>
<p>When I run this on a web server it works just fine. Its only when I run it from the file its self when I have this problem.</p>
<p>Any ideas on how I can make this work in IE?</p>
<p>Edit: I found the answer to my problem. <a href="http://docs.jquery.com/Specifying_the_Data_Type_for_AJAX_Requests" rel="nofollow">Here</a></p>
http://stackoverflow.com/questions/1227369/is-there-a-way-to-bookmark-a-page-and-making-it-static-in-firefox-3Is there a way to bookmark a page and making it static in Firefox? [closed]Vili2009-08-04T12:56:44Z2009-10-17T13:25:04Z
<p>I would like to make some bookmarks being static in Firefox but I can't find anything to do this.</p>
<p>Example:</p>
<p>I bookmark a page and I want to have a look at it 3 months later. But what if it changes or disappears? I don't want to save the page with httrack or something, just a right click menu item (Make static/offline) or similar.</p>
http://stackoverflow.com/questions/173378/has-anyone-built-web-apps-that-can-run-totally-off-line10Has anyone built web-apps that can run totally off-line?SCdF2008-10-06T06:44:16Z2009-10-14T09:56:31Z
<p>I'm building an app that authors would (hopefully) use to help them, uh.. <em>author</em> things.</p>
<p>Think of it like a wiki but just for one person, but cooler. I wish to make it as accessible as possible to my (potential) adoring masses, and so I'm thinking about making it a web-app.</p>
<p>It certainly doesn't have to be, there is no integration with other sites, no social features. It involve typing information into forms however, so for rapid construction the web would probably be the best.</p>
<p>However, I don't really want to host it myself. I couldn't afford it for one, but it's mostly that people who use this may not want their data stored elsewhere. This is private information about what they are writing and I wouldn't expect them to trust me with it, and so I'm thinking about making it a thick-client app.</p>
<p>And therein lies the problem, how to make a application that focuses mainly on form data entry available easily to potential users (yay web apps) but also offline so they know they are in full control of their data (yay thick-client apps).</p>
<p>I see the following solutions:</p>
<ol>
<li>Build it as a thick-client Java app and run a cutdown version on the net as an applet that people can play with before downloading the full thing.</li>
<li>Build it as a Flex app for online and an Air app for offline (same source different build scripts basically).</li>
<li>Build it as a standard web-app (HTML, JS etc) but have a downloadable version that somehow runs the site <strong>totally</strong> on their computer. It wouldn't touch the net at all.</li>
</ol>
<p>Ignoring 1 and 2 (I'm looking into them separately), I think 3 would involve:</p>
<ul>
<li>Packaging up an install that contains a tiny webserver that has my code on it, ready to run.</li>
<li>Remapping the DB from something like mySQL to something like SQLite.</li>
<li>Creating some kind of convience app that ran the server and opened your browser to the right location, possibly using something like <a href="https://wiki.mozilla.org/Prism" rel="nofollow">Prism</a> to hide the whole broswer thing.</li>
</ul>
<p>So, <strong>have you ever done something like this before?</strong></p>
<p>If so, <strong>what problems did you encounter?</strong></p>
<p>Finally, <strong>is there another solution I haven't thought of?</strong>'</p>
<p><em>(also, <a href="http://joyent.com/developers/slingshot/" rel="nofollow">Joyent Slingshot</a> was a suggestion on another question, but it's RoR (which I have no experience in) and I'm 99% sure it doesn't run under linux, so It's not right for me.)</em></p>
http://stackoverflow.com/questions/1557957/php-ssh2connect-times-out-instead-of-returning-false0PHP ssh2_connect times out instead of returning 'false'lupin2009-10-13T02:38:47Z2009-10-13T02:38:47Z
<p>I am trying to connect to some of my servers using PHP ssh2_connect method. If a server is not online, my script would attempt again at a later point of time. The problem am facing is that when a server is not available, the ssh2_connect method does not return a 'false' as mentioned in the php manuals, instead it waits until the script times out. Is there any way to force ssh2_connect function to return if it cannot connect immediately? Am using the following code..</p>
<pre><code><?php /* Notify the user if the server terminates the connection */
function my_ssh_disconnect($reason, $message, $language) {
printf("Server disconnected with reason code [%d] and message: %s\n",
$reason, $message);
}
$methods = array(
'kex' => 'diffie-hellman-group1-sha1',
'client_to_server' => array(
'crypt' => '3des-cbc',
'comp' => 'none'),
'server_to_client' => array(
'crypt' => 'aes256-cbc,aes192-cbc,aes128-cbc',
'comp' => 'none'));
$callbacks = array('disconnect' => 'my_ssh_disconnect');
// shell.example.com is replaced by my server addresses
$connection = ssh2_connect('shell.example.com', 22, $methods, $callbacks);
if (!$connection){
die('Connection failed');
}else{
// authenticate and execute commands
}
?>
</code></pre>
<p>The code works perfectly when the server is online. It would be great if someone can suggest a solution or workaround if server is offline. Servers run OpenSSH in case its related.</p>
http://stackoverflow.com/questions/331217/how-to-take-a-java-web-application-offline1How to take a Java Web-application offline?JMercedes2008-12-01T15:45:43Z2009-10-07T20:42:21Z
<p>We develop Java Web-aps (Websphere, DB2) which display graphical and databased information. We would also like to offer the same application offline (distribution via CD/DVD) with online data-update. We have tried a number of alternatives in the past, but nothing has been really stable. What are the new best practices to take a Web ap plus data (in a small database) offline?</p>
http://stackoverflow.com/questions/1507800/external-json-data-with-offline-development0External JSON data with offline developmentzaius2009-10-02T05:03:11Z2009-10-02T05:24:25Z
<p>I am developing a web app that accesses some external JSON data. I'm currently using jQuery's getJSON to get the data and call the callback. </p>
<p>My internet at home is terrible, so I'm regularly not connected. I am looking for a way to develop this app while disconnected from the internet.</p>
<p>My initial thought was to have an OFFLINE variable that I set, which changes the location of the scripts to a local file, but because jQuery's getJSON uses dynamically named functions for callbacks, it would need some server intelligence.</p>
<p>More info on how getJSON callbacks work here: <a href="http://docs.jquery.com/Ajax/jQuery.getJSON" rel="nofollow">http://docs.jquery.com/Ajax/jQuery.getJSON</a></p>
<p>I'm sure there's an easier way. Any suggestions?</p>
<p>** <strong>Edit</strong> **</p>
<p>Let me try and clarify a bit
I'm currently running a local web server. I have to - script tags can't reference a local file, for security reasons. </p>
<p>I'm currently calling getJSON with the url: <a href="http://twitter.com/status/user%5Ftimeline/user.json?callback=" rel="nofollow">http://twitter.com/status/user%5Ftimeline/user.json?callback=</a>?</p>
<p>If I downloaded that json response and hosted it on the local webserver, it wouldn't work, because the callback name will change every time, yet the feed will have the function name it was originally fetched with.</p>
http://stackoverflow.com/questions/1500463/detect-if-offline-in-c-webbrowser-component1Detect If Offline - in C# WebBrowser component?Nick2009-09-30T20:27:01Z2009-09-30T20:34:58Z
<p>We're working on a wrapped WebBrowser component. We'd like to display one page (e.g. oursite.com/thispage.html) if the user is online and another page (e.g. C:\somewhere\thispage_offline.html) if the user is offline. I'm able to to properly display both pages, but my issue is detecting the online/offline status.</p>
<p>I tried
<a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.isoffline%28VS.80%29.aspx" rel="nofollow" title="WebBrowser.IsOffline on MSDN">WebBrowser.IsOffline</a>; however it seems that only relays the Offline Mode status, not whether or not the computer is actually able to reach the internet.</p>
<p>Is there a way to detect this from the WebBrowser component? Is there a way at all?</p>
<p>Thanks for all your help!</p>
http://stackoverflow.com/questions/1500104/offline-synchronization-options-with-net3Offline synchronization options with .NETChris2009-09-30T19:11:02Z2009-09-30T19:24:02Z
<p>I've been asked to research approaches to deal with an app we're supposed to be building. This app, hypothetically a Windows form written in C#, will issue commands directly to the server if it's connected, but if the app is offline, the state must be maintained as if it was connected and then sync up and issue data changes/commands to the server once it <strong>is</strong> connected. </p>
<p>I'm not sure where to start looking. This is something akin to Google Gears, but I don't think I have that option if we go a Winform route (which looks likely, given that there are other functions the application needs that a web app couldn't perform). Is the <a href="http://msdn.microsoft.com/en-us/sync/default.aspx" rel="nofollow">Microsoft Sync framework</a> a viable option? Does Silverlight do anything like this? Any other options? I've Googled around a bit but would like the community input on what's best given the scenario.</p>
http://stackoverflow.com/questions/1471201/how-to-validate-an-url-on-the-iphone0How to validate an url on the iPhoneMrThys2009-09-24T11:53:21Z2009-09-24T14:12:12Z
<p>In an iPhone app I am developing, there is a setting in which you can enter a URL, because of form & function this URL needs to be validated online as well as offline.</p>
<p>So far I haven't been able to find any method to validate the url, so the question is;</p>
<p>How do I validate an URL input on the iPhone (Objective-C) online as well as offline?</p>
http://stackoverflow.com/questions/1456361/iphone-load-map-offline-tiles0iPhone load map offline tilesSorinA.2009-09-21T19:26:09Z2009-09-24T07:55:27Z
<p>Hello,
i'm trying to start a project that will present a map and drop some pins for the museums in my town. I played with map kit and route-me from Cloudmade so i'm not a stranger to them. I want to try something like OffMaps does, to use maps offline but i want to provide the tiles from the start. </p>
<p>I downloaded the tiles from OpenStreetMap with the Global Map Download Tool. It has an option to convert the data downloaded to an SqlLite database for the iphone that has the current structure:</p>
<ul>
<li>zoom(int)</li>
<li>x(int)</li>
<li>y(int)</li>
<li>flags (int)</li>
<li>length (int)</li>
<li>data (blob)</li>
</ul>
<p>my current problem is that i don't how to make the connection between the cloudmade library and my sqllite database with tiles. Anyone can give me some pointers what should i look for in this case?</p>
<p>thank you in advance,
Sorin</p>
<p><strong>Edit:</strong>
<strong>i started reading the route-me google group. It has some good pointers for anyone that wants to do something similar <a href="http://groups.google.com/group/route-me-map/msg/456edd347d54c6c3" rel="nofollow">route-me group</a> you need to subscribe to the group.</strong></p>
http://stackoverflow.com/questions/189478/offline-web-application-success-stories-tips-and-resources12Offline Web Application: Success Stories, Tips and ResourcesDaniel Silveira2008-10-09T22:40:41Z2009-09-14T10:03:18Z
<p>We @ <a href="http://www.medicware.com.br" rel="nofollow">medicware.com.br</a> are thinking about making our <strong>web application offline-capable</strong> with <a href="http://gears.google.com/" rel="nofollow">Gears</a>. Our main goal is to <strong>keep basic functionality running</strong> when the internet <strong>connection goes down</strong>.</p>
<p>So, I'd like to hear <strong>success stories</strong>, <strong>tips</strong> and <strong>resources</strong> about yours real experiences in that field (related to <a href="http://gears.google.com/" rel="nofollow">Gears</a> or not).</p>
http://stackoverflow.com/questions/1416111/iphone-app-vs-offline-web-app-which-way-is-the-smartest0Iphone App vs. Offline Web App. Which way is the smartest?Jesper Rønn-Jensen2009-09-12T20:52:30Z2009-09-13T05:07:31Z
<p>I think about starting from scratch building a small application fullfilling two technical requirements:</p>
<ul>
<li>should be usable on iPhone</li>
<li>should work offline</li>
</ul>
<p>There are two obvious alternatives here to choose between</p>
<ul>
<li>A real iPhone application with offline capabilities</li>
<li>A web app using HTML5 offline, Google Gears or similar</li>
</ul>
<p>Having no iPhone app development experience (I don't own an iPhone), i wonder which way would be the easiest to go? </p>
<p>What are the learning curves for building offline HTML vs building an iPhone app?</p>
http://stackoverflow.com/questions/850686/is-dojo-offline-working-are-there-any-alternatives0Is Dojo offline working? Are there any alternatives?Gonzalo2009-05-12T00:49:14Z2009-09-11T19:34:05Z
<p>Hello there! I'm working on a web app which will need to work offline. I'm looking at <a href="http://gears.google.com/" rel="nofollow">Gears</a> right now, but I also found <a href="http://www.dojotoolkit.org/offline" rel="nofollow">Dojo offline</a>. I'm asking this question because the latest news of it are from 2007, and the hosted <a href="http://docs.google.com/View?docid=dhkhksk4%5F8gdp9gr#demos" rel="nofollow">demos</a> don't seem to work (I've installed Gears under Firefox 3.0 on my Ubuntu laptop)
Is anyone using Dojo offline, or an alternative high level offline web application toolkit right now?</p>
http://stackoverflow.com/questions/846521/iphone-offline-cached-apps-dissapear-after-closed-in-safari0iphone offline cached apps dissapear after closed in safari?jason2009-05-11T02:22:27Z2009-09-09T11:56:48Z
<p>hey all, </p>
<p>We're developing an html5 offline webapp for the ipod touch/iphone. We have the manifests and everything working correctly, but we can't figure out why our app will not reopen after the 'tab' in iphone safari is closed.</p>
<p>For example's sake, here's what works:</p>
<p>1) open the url to the offline-enabled html file in safari on the ipod touch</p>
<p>2) exit safari, turn wifi off</p>
<p>3) go back into safari where the dynamic webapp is in a window, hit refresh</p>
<p>4) app works offline!</p>
<p>however, if we do this, the offline app dissapears:</p>
<p>5) add a bookmark to the app's url (or a home screen icon)</p>
<p>6) close the 'tab' or window in safari</p>
<p>7) open the bookmark or the home screen icon</p>
<p>8) error message: "Cannot Open Page: Safari cannot open page because it is not connected to the internet."</p>
<p>I've googled on the issue a bit, and you know how it goes, I'll find the answer 2 seconds after hitting 'post' here.. but anyway my gut feeling is that the current latest iphone OS version of safari is trying to dns lookup on the url and erroring out rather than realizing it has the locally stored app already on the device.</p>
<p>anyone run into this? is there some flag i can set in my manifest or something to fix this?</p>
http://stackoverflow.com/questions/176955/offline-access-to-moinmoin-wiki-using-google-gears2Offline access to MoinMoin wiki using Google GearsCaptSolo2008-10-07T01:53:38Z2009-09-06T11:53:57Z
<p>How to add offline access functionality to <a href="http://moinmo.in" rel="nofollow">MoinMoin wiki</a>?</p>
<p>As a minimum, I would love to have browsing access to all pages on a server-based wiki (while being offline). Search and other things, which do not modify the content, are secondary. An added bonus would be if this solution allowed to update wiki content while offline and push it back to the wiki when online.</p>
<p>Google Gears looks like a good candidate for trying to solve this, but other solutions are also welcome.</p>
<p>An interesting property of MoinMoin is that it keeps content in regular files instead of the database. This can make it easier to port wiki content from one location to another, but I don't know if that can play any role in answering this question.</p>
<p>Note: if you see a good reply please rate it up. i'd love to do that, but the site does not let me do ratings yet.</p>
http://stackoverflow.com/questions/1384622/xcode-3-2-offline-documentation2Xcode 3.2 offline documentation?stefanB2009-09-06T00:55:40Z2009-09-06T01:59:56Z
<p>I've upgraded to Xcode 3.2 and I'm searching for the offline documentation / reference library that was always available for the previous versions of Xcode.</p>
<p>When I go to menu Help -> Developer Documentation I get the reference library but when I search for any term like NSViewController the pop up keeps showing up (annoyingly) telling me that I'm not connected to internet -> which I know because I'm not ... </p>
<p>Does it mean I'm not longer able to look at documentation when I'm not connected to internet?</p>
<p>I'm missing the introductory topics on various technologies and so on like Window Controller and so on. Is there a place to download any additional offline documentation for Xcode?</p>
http://stackoverflow.com/questions/1339702/javafx-offline-ability0JavaFx Offline ability?jackysee2009-08-27T08:37:24Z2009-09-01T00:06:26Z
<p>Recently we are looking for the possibility to use JavaFX as an offline RIA client. </p>
<p>The idea is that user can use the netbook to work on the app with or without internet connection. With internet connection, user can interact with server through web services. Without internet connection, data and transaction will be stored on client and sync once connection is up again.</p>
<p>Someone point me to JavaFX. After reading some spec and tutorials, I found that most of them is focusing on UI-building. So I don't quite actually know how it can handle offline storage and synchronization? Any one know more about this?</p>
<p>Actually the requirement makes me think of Google Gears rather than JavaFX.</p>
http://stackoverflow.com/questions/40230/guids-as-primary-keys-offline-oltp4GUIDs as Primary Keys - Offline OLTPDaniel Magliola2008-09-02T18:35:36Z2009-08-19T16:52:40Z
<p>We are working on designing an application that is typically OLTP (think: purchasing system). However, this one in particular has the need that some users will be offline, so they need to be able to download the DB to their machine, work on it, and then sync back once they're on the LAN.</p>
<p>I would like to note that I know this has been done before, I just don't have experience with this particular model.</p>
<p>One idea I thought about was using GUIDs as table keys. So for example, a Purchase Order would not have a number (auto-numeric) but a GUID instead, so that every offline client can generate those, and I don't have clashes when I connect back to the DB.</p>
<p>Is this a bad idea for some reason?
Will access to these tables through the GUID key be slow?</p>
<p>Have you had experience with these type of systems? How have you solved this problem?</p>
<p>Thanks!<br />
Daniel</p>
http://stackoverflow.com/questions/1265891/best-practice-for-synchronizing-common-distributed-data1Best Practice for synchronizing common distributed datachubbard2009-08-12T12:33:43Z2009-08-13T13:01:35Z
<p>I have a internet application that supports offline mode where users might create data that will be synchronized with the server when the user comes back online. So because of this I'm using UUID's for identity in my database so the disconnected clients can generate new objects without fear of using an ID used by another client, etc. However, while this works great for objects that are owned by this user there are objects that are shared by multiple users. For example, tags used by a user might be global, and there's no possible way the remote database could hold all possible tags in the universe. </p>
<p>If an offline user creates an object and adds some tags to it. Let's say those tags don't exist on the user's local database so the software generates a UUID for them. Now when those tags are synchronized there would need to be resolution process to resolve any overlap. Some way to match up any existing tags in the remote database with the local versions.</p>
<p>One way is to use some process by which global objects are resolved by a natural key (name in the case of a tag), and the local database has to replace it's existing object with this the one from the global database. This can be messy when there are many connections to other objects. Something tells me to avoid this.</p>
<p>Another way to handle this is to use two IDs. One global ID and one local ID. I was hoping using UUIDs would help avoid this, but I keep going back and forth between using a single UUID and using two split IDs. Using this option makes me wonder if I've let the problem get out of hand.</p>
<p>Another approach is to track all changes through the non-shared objects. In this example, the object the user assigned the tags. When the user synchronizes their offline changes the server might replace his local tag with the global one. The next time this client synchronizes with the server it detects a change in the non-shared object. When the client pulls down that object he'll receive the global tag. The software will simply resave the non-shared object pointing it to the server's tag and orphaning his local version. Some issues with this are extra round trips to fully synchronize, and extra data in the local database that is just orphaned. Are there other issues or bugs that could happen when the system is in between synchronization states? (i.e. trying to talk to the server and sending it local UUIDs for objects, etc).</p>
<p>Another alternative is to avoid common objects. In my software that could be an acceptable answer. I'm not doing a lot of sharing of objects across users, but that doesn't mean I'd NOT be doing it in the future. Which means choosing this option could paralyze my software in the future should I need to add these types of features. There are consequences to this choice, and I'm not sure if I've completely explored them.</p>
<p>So I'm looking for any sort of best practice, existing algorithms for handling this type of system, guidance on choices, etc.</p>
http://stackoverflow.com/questions/1253950/opening-offline-cube-from-another-machine1Opening offline cube from another machineIrawan Soetomo2009-08-10T09:38:19Z2009-08-11T15:58:35Z
<p>Here is the steps to my problem:</p>
<ol>
<li><p>I have a MOLAP cube with MOLAP dimensions on the AS2008 server</p></li>
<li><p>I connect to it with Excel 2007 and save it in a local cube file (.cub)</p></li>
<li><p>I disconnect from network, then I try to open the offline cub file through excel. It is successful.</p></li>
<li><p>I copy the .cub file to another machine, start Excel, try to connect to the .cub and I got error.</p></li>
</ol>
<p>Please help. Thank you so much.</p>
<p>Additional info, on the machine I failed to open the offline cube, I have also installed Microsoft SQL Server 2008 Analysis Services 10.0 OLE DB Provider.</p>