On Fri, 15 Nov 2002, Cees van de Griend wrote:
> > response.setHeader("Cache-Control","no-cache");
> > response.setHeader("Cache-Control","no-store");
> > response.setHeader("Cache-Control","must-revalidate");
Don't know if this is all of your problem, but the above code probably
doesn't do what you intended. The setHeader() method will *replace* any
previous value for the same header name, so only the third one would
actually take effect. Use addHeader() if you want to send all three.
Craig
--
To unsubscribe, e-mail: <mailto:tomcat-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-user-help@;jakarta.apache.org>