> Due to browser and proxy server bugs, embedding meta-tags into the pages
> themselves is not reliable. Traditionally, the way you do this is 
> to add the
> following code somewhere:
> 
>    response.setHeader("Cache-Control", "no-cache");
>    response.setHeader("Pragma", "no-cache");
>    response.setHeader("Expires", <some time>);
> 
> The logical place for this is the location through which all 
> requests come:
> the doGet method of the main servlet.

If you are not using the pull model, you can have your screens
inherit from a common project-wise screen that adds these headers
all the time.

If you are using the pull model, your best bet is probably to
use a pull tool, as someone else suggested.


-- 
Gonzalo A. Diethelm
[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to