My HTML 5 application is deployed locally on Tomcat, how can I check offline access?
Here is a detailed description:
I have a very simple JSP application in which I try to test the standalone HTML 5 cache.
Here's what my JSP page (code snippet) looks like:
<!doctype html> <html lang="en" manifest="example.appcache">
And this is the manifest file:
The application is deployed on Tomcat 6. I can very well access the date.jsp page when Tomcat is running, and I see an FF popup asking me for permission to store data locally. How can I check access to a page offline? I stopped Tomcat, but I see a standard page with a browser error (it is not possible to connect an error message).
Thanks JJ
source share