Tagged Questions

0
votes
3answers
36 views

Browser Cache Control, Dynamic Content

Problem: I can't seem to get FireFox to cache images sent from a dynamic server Setup: Static Apache Server with reverse proxy to a dynamic server (mod_perl2) at backend. Here is the request URL for …
1
vote
1answer
134 views

HTTP/1.1 Cache-Control no-cache problem

I do not want my Java SWT application to cache temporary internet files. Currently I am dealing with IE (because SWT uses the native browser), and the browser cannot be changed. The "Cache-Control: …
0
votes
0answers
20 views

How do you test user agent/web browser caching?

When you explicitly set the cache request and response directives via setting response and request headers, is there a better way to test if they are working correctly for UAs other than manually …
0
votes
2answers
170 views

ASP.NET MVC Change Response Header when Serving Javascript/CSS Files

Is there a way to automatically change the response header in ASP.NET MVC when the browser requests a Javascript or CSS file? Basically, I want my Javascript and CSS files to be served with this set …
0
votes
2answers
157 views

Enabling browser caching via java

Good day, I am using CacheFilter to filter a certain path to my server (which outputs an image stream to the response stream). And I've configured it in my web.xml as follows: <filter> …
3
votes
5answers
110 views

What’s the best way to learn about HTTP, the TCP stack, and cache-control headers?

Recently I read a software engineer job description. The requirements included knowing how the web works from HTTP to HTML, improving the performance of the TCP stack in Linux, and knowing how …
0
votes
1answer
127 views

HTTP Cache-Control: What is acceptable default behavior when it’s not present?

I'm running into some HTTP caching issues, caused by some downstream apps not putting Cache-Control headers on time-sensitive data. I need to make the case that this is a broken situation. Is there …
0
votes
2answers
592 views

How do I set the cachability of static files in IIS?

I have some static images in a folder on my IIS 6-based website that I want to be downloaded as little as possible (to preserve bandwidth). I've set the Content Expiration to expire after 30 days. Is …
1
vote
4answers
1k 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");%> …