1 Reply Latest reply on Jan 5, 2008 2:24 AM by tulumvinh

    Caching of navigation path

    tulumvinh

      Hello all,

      Question: How do I disable the caching of navigation in a portlet?
      Scenario: Login to portal as user "admin" -> click on 'admin" link -> clickon the "home" tab -> navigate to the detail pages of a portal. Then click on the "members" tab, when you click on the "home" tab, you are automatically at the detail page. It seems that there is caching done on the navigation path within the portlet.
      Questions:
      - This navigation path caching does not seem to be done with Transient/Session or persistent cookies, true?
      - is this caching control by <expiration-cache> tag within portlet.xml? I set the tag to a value of 0 but it didn't work.
      - How do I inactivate this caching.

      I am using:
      JBoss AS 4.2.1 and JBoss Portal 2.6.2

      Any guidance is appreciated.

        • 1. Re: Caching of navigation path
          tulumvinh

          Hello all,

          After further research, I discover that JBP implements the navigation path by caching the pages on the client (i.e. browser cache). I suspect my solution to disable this would be to modify the portlet to send HttpResponse headers "pragma:No-cache" and "Cache-control:no-cache".

          Regards