AW: avoid proxy-caching by generating changing urls

2003-11-22 Thread Christine Gerstenmayer
[mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 18. November 2003 23:44 An: Struts Users Mailing List Betreff: Re: avoid proxy-caching by generating changing urls Hi, I'm using Struts with Tomcat 4.1. If you disable cookies in your tomcat context, all your ULR will be rewritten with a jsessionid. So

Re: avoid proxy-caching by generating changing urls

2003-11-19 Thread Hans Juergen von Lengerke
In my project I use this in all jsp I won't be in any cache : % response.setHeader(pragma, no-cache); response.setHeader(Cache-control, no-cache, no-store); response.setHeader(Expires, 0); % Just for the record, pragma: no-cache is not in the HTTP specification and most

avoid proxy-caching by generating changing urls

2003-11-18 Thread Christine Gerstenmayer
Hi all ! My application is running behind a proxy which caches everything, if the url is the same. It's no use that I have this in each Jsp: meta http-equiv=pragma content=no-cache Therefore I used the Struts-property controller nocache=true/ But it was not that I expected: My

Re: avoid proxy-caching by generating changing urls

2003-11-18 Thread Carl
Hi, I'm using Struts with Tomcat 4.1. If you disable cookies in your tomcat context, all your ULR will be rewritten with a jsessionid. So the proxy issue should be solve. However I don't know If there is a way to enable cookies AND be sure that the proxy's cache is disable. In my project I