Re: Override controller nocache=true

2007-04-10 Thread Paul Benedict
Greg, use the tag to give a custom property to an action. Perhaps you'd want a property called "yescache" which, when present, you want to perform caching. To take effect, you'll have to create a new command in the controller (1.3) or override the processNoCache (1.2) method. Paul Greg Dunn

Override controller nocache=true

2007-04-10 Thread Greg Dunn
I have the set in struts-config, but I have a certain page that streams a PDF file where I need to allow caching to accommodate IE users. Is it possible to override the setting for an individual page? Maybe by setting the headers for the page itself to allow caching? ---