[
https://issues.apache.org/jira/browse/OFBIZ-5200?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13937066#comment-13937066 ]
Jacques Le Roux commented on OFBIZ-5200:
----------------------------------------
The solutions are here
https://stackoverflow.com/questions/367786/prevent-caching-of-ajax-call (per call, as suggested Paul, or globally)
It seems better to me to disable the cache only per call. So I propose to close and let users decide on what they want, other opinions?
> Prevent caching of json ajax request
> -------------------------------------
>
> Key: OFBIZ-5200
> URL:
https://issues.apache.org/jira/browse/OFBIZ-5200> Project: OFBiz
> Issue Type: Improvement
> Components: framework
> Affects Versions: Release 09.04, Release 10.04, Release Branch 12.04
> Reporter: Roberto BenÃtez Monje
> Priority: Minor
> Labels: ajax, caching, ie, json, jsonresponse
>
> An user who is using IE9 might experience a strange behaviour inside a webpage with json ajax requests. This is so because IE9 does caching of these requests.
> I added in common/../CommonEvents.java , jsonResponseFromRequestAttributes method the following:
> response.setDateHeader("Expires", -1);
> response.setHeader("Cache-Control", "private");
> response.setHeader("Last-Modified", new Date().toString());
> response.setHeader("Pragma", "no-cache");
> response.setHeader("Cache-Control", "no-store, no-cache, must-revalidate");
--
This message was sent by Atlassian JIRA
(v6.2#6252)