I am using Restlet framework. Firefox seems to cache the responses sent to the browser. I am explicitly specifying that the response should not be cached as follows - however it does not seem to get picked up and the response ends up getting cached. Any suggestions are appreciated.
List <CacheDirective> cd = new ArrayList <CacheDirective> (); cd.add (CacheDirective.noCache ()); resp.setCacheDirectives (cd); ------------------------------------------------------ http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2722235

