DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6709>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6709 Images on protected areas have not "Last modified" header ------- Additional Comments From [EMAIL PROTECTED] 2002-03-04 23:28 ------- It is a problem for the container to assume that all constrained urls should not be cached by the browser since users sometimes want this behavior in IE. The configurable cache-control option planned by Remy should resolve the issue by allowing users to disable the cache-control header. I was able to get around the problem for now by overwriting the header values in the beginning of my servlet service method since the container has already set the headers before the service method is called. Add the following lines to the beginning of your servlet service method to reenable the browser caching. response.setHeader("Pragma", ""); response.setHeader("Cache-Control", ""); -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
