Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
7answers
9k views

Why both no-cache and no-store should be used in HTTP response?

I'm told to prevent user-info leaking, only "no-cache" in response is not enough. "no-store" is also necessary. Cache-Control: no-cache, no-store After reading this spec ...
6
votes
2answers
1k views

HttRequest without caching

I'm writing a client that is making repeated http requests for xml data that is changing over time. It looks like the Android stack is caching my page requests and returning the same page repeatedly. ...
2
votes
1answer
63 views

apache no-cache, expire

I am trying to force no-cache on csv file on my site. I added those lines to httpd.conf, by the documentation from apache: ExpiresActive On ExpiresDefault A0 <FilesMatch "\.(html|csv|htm)$"> ...
2
votes
1answer
649 views

Google App Engine - headers[] and headers.add_header() for cache control

What is the proper way to set cache control? Sometimes I see the use of headers[] self.response.headers["Pragma"]="no-cache" self.response.headers["Cache-Control"]="no-cache, no-store, ...
2
votes
4answers
4k views

Howto deactivate caching inside a jsp page

I understand there is a HTTP response header directive to disable page caching: Cache-Control:no-cache I can modify the header by "hand": <%response.addHeader("Cache-Control","no-cache");%> ...
1
vote
1answer
58 views

How to force clear user's browser all the time?

We're working on a website. Our client want to check the website daily, but they're facing a problem. Whenever we make a change on the website, they have to clear their browser cache. So I added the ...
1
vote
3answers
1k views

Tomcat is setting no-cache for JS and CSS file

So frustrating. :P Really would like these to be cached on users' browsers but it's setting this. Cache-Control:no-store, no-cache, must-revalidate, post-check=0, pre-check=0 How do I stop ...
1
vote
1answer
2k views

Safari browser ignoring my no-cache

I'm unable to force a page to always expire in Safari. Chrome, IE and Firefox are good citizens but Safari is cruising along just fine with ignoring the following ASP.NET code: // Expire immediately ...
1
vote
0answers
674 views

HTML5-compliant cache-control no-cache inside the document?

This is probably a duplicate question but none of the solutions I've found by searching the internet will validate at w3c. I don't have granular control at the document-level on the hosting-company's ...
0
votes
0answers
16 views

Hosting a GWT Webapp in IIS

I am currently trying to configure an ASP.net Web Application through Web.config, to host a GWT WebApp in a specific folder. I've managed to configure the mimeMap for the .manifest file extension in ...
0
votes
0answers
7 views

Avoiding 301 redirect caching

This is a follow up question to Using 301/303/307 redirects for dynamic short urls, where I try to determine the best method for implementing short url redirection when the destination url will change ...
0
votes
0answers
15 views

How to avoid that an image returned by a servlet to be cached in the browser?

I have a developed a simple 'email was read by recipient' mechanism in which a beacon image is embedded into an email so that every time the user reads the email, the image is 'open' and a hit a ...
0
votes
0answers
77 views

Google Chrome cache buggery : Chrome does not fetch latest version of the page despite NO-CACHE

I want to know how to instruct Chrome not to use a cached version of a page. I cannot get Google Chrome [15.0.874.106 m] to load the latest version. There was a typo on the page and I've corrected it. ...
0
votes
1answer
73 views

How can I get the back-button to work with a JSF app with no-cache set?

This is a problem I inherited. We have a JSF/RichFaces/Seam app, which for security reasons has no-cache set. The problem comes when users hit the back-button, causing a repost of a form. Sometimes ...
0
votes
1answer
99 views

PHP - Is it better to set session cache limiter to nocache or use jQuery ajax cache:false?

Is it better to set session cache limiter to nocache or use jQuery ajax cache:false? I'm using PHP with jQuery. I want to default session.cache_limiter to nocache for all my php pages that use ...
0
votes
1answer
54 views

NoCaching A Small Part Of My CakePHP Page

I want to employ CakePHP's basic caching functionality on my site's home page. However, there is one element on the page that should display different data depending on the visitor's location, as ...
0
votes
0answers
362 views

Why would Response.Cache.SetNoStore() not work in a class that derives from System.Web.UI.Page

I work on registration sites as part of my job and patterns appear that I try and farm out to a central BasePage DLL. Here I have created useful and reusable methods in the past, Such as methods to ...
0
votes
1answer
385 views

Script (nocache.js) not loads GWT compiled module in IE8

Script (nocache.js) loads into Mozila FF but not loads into IE8. I cleared cache for IE8 still no loading of script. Any solution ? gwt.nocache.js is generated in gwt folder gwt/gwt.nocache.js src ...
0
votes
1answer
166 views

Where in jBoss when using SSL and JAAS are the Cache-Control and Pragma HTTP headers set?

Implemented JAAS and SSL on jBoss 4.2.2 and found the issue with being unable to download .pdf's. after some poking around I found references to the Pragma: No-cache and Cache-Control: no-cache ...
0
votes
3answers
121 views

Is it possible for PHP to generate a fresh page on every Javascript history.go(-1)?

I have a PHP page (a.php) which is already sending these headers: <?php header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate'); header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); ...
0
votes
1answer
1k views

How do I keep Tomcat deployed files in a context from caching in a browser?

I am working on a Java/Struts application that uses Tomcat 6.0.10. It's a typical web application that allows users to edit some forms, and streams PDFs. Way back, we added: ...
0
votes
1answer
145 views

How do I make WISA act like LAMP (Protecting .mp3s on IIS)

I have created a few small flash widgets that stream .mp3 audio from an Apache/php host. The mp3 file cannot be directly accessed and does not save it self to the browsers cache. To do this I set the ...