I went back and looked at my cookies information. 1-dot-myapp.appspot.com only has a _ga cookie, the entry for myapp.appspot.com has 3 cookie values: application cache, ACID, and _ga. I was surprised that 1-dot-myapp.appspot.com did not have an application cache value in the cookie. So now I guess my question is. How can I force the application cache to renew as desired.
What I came up with was to either remove reference to my manifest file from my html or to rename my manifest file. So when ever I want to for the client browser to update the cache I redploy with a newly named manifest file. The manifst file is renamed with a version number like manifest2.mf. Then my build modifies all references for manifest to the newly name manifest file i.e. manifest2.mf. My html files and my appengine.xml file then us manifest2.mf <html manifest="http:/myapp.appspot.com/manifest2.mf" lang="en">. these changes seem to force the client browsers to update their cache. On Monday, August 11, 2014 5:09:56 PM UTC-7, Brian Hardy wrote: > > Hello, > > I have a java google appengine web application which uses data held in the > datastore. I have a relatively small number of data items so upon startup, > my servlet reads the datastore items into a java Collection and sorts them > as a model and my jsp uses that model to display. When I redeploy my app > and I use a version specific url like 1-dot-myapp.appspot.com, I can see > the updated display right away. However on other devices when I access the > application through the default url of myapp.appspot.com, the display > does not update. If I access the url 1-dot-myapp.appspot.com on the other > device then I see the updated display with the modified data. > > How can I force the default version to update upon deploy just as the > version specific updates? > > Thanks > > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
