You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by "Jacques Le Roux (JIRA)" <ji...@apache.org> on 2014/03/16 00:30:46 UTC

[jira] [Commented] (OFBIZ-5200) Prevent caching of json ajax request

    [ https://issues.apache.org/jira/browse/OFBIZ-5200?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13936342#comment-13936342 ] 

Jacques Le Roux commented on OFBIZ-5200:
----------------------------------------

Even if browsers "vendors" policies are more to update systematiqually, that sounds good to me (though I did not check all the response headers above, but I guess Roberto did it smartly)

>  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)