Uploaded image for project: 'Causeway'
  1. Causeway
  2. CAUSEWAY-1619

Blob/Clob Action results are cached no matter what

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 1.14.0
    • 1.15.0
    • Viewer Wicket
    • None

    Description

      If you click an Action that returns a Blob (download), the client receives a HTTP response header with an entry Pragma: "cache".

      If the Blob is dynamically changing with every request, the client will not see this changes. (As long as the request url stays the same.)

      Expected behavior would be (at least for this code snippet) to produce a new result with each invocation.

      SimpleObjectMenu.java
      @Action(semantics=SemanticsOf.NON_IDEMPOTENT)
      public Blob download() {
      	return new Blob("blob", "application/json",
                    ("{\"now\" : \""+new java.util.Date()+"\"}").getBytes());
      }
      

      But it does not!

      Steps to reproduce:
      Take the simple-app artifact 1.14 and add above snippet to the SimpleObjectMenu.
      Consecutive calls of the download action will not be updated. Instead the client/browser provides cached data from an earlier request.

      Attachments

        Activity

          People

            danhaywood Daniel Keir Haywood
            hobrom Andi Huber
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: