RE: IE caching again (was: expire_

2001-03-19 Thread Alistair Hopkins
without doing a HEAD request. It only does this for GET requests, so one way is to use POSTS throughout... -Original Message- From: Tagunov Anthony [mailto:[EMAIL PROTECTED]] Sent: Friday, March 16, 2001 2:57 PM To: [EMAIL PROTECTED] Subject: IE caching again (was: expire_ Well, there's

RE: IE caching again

2001-03-19 Thread Brett Knights
I think that the caching settings on IE only affect files written to disk. You might try including something like this in the head section of the page's html: meta http-equiv="expires" content="Wed, 26 Feb 1997 08:21:57 GMT" meta http-equiv="pragma" content="no-cache" It shouldn't make any

IE caching again (was: expire_

2001-03-16 Thread Tagunov Anthony
Well, there's already been an extensive discussion on this in the list just the last days all day long. Arrived to nothing. (only you may try to issue response.setHeader("Cache-Control","no-cache"); response.setHeader("Pragma","no-cache");

RE: IE Caching

2001-02-11 Thread Vikramjit Singh
inal Message- From: Rick Roberts [SMTP:[EMAIL PROTECTED]] Sent: Friday, February 09, 2001 10:58 PM To: [EMAIL PROTECTED] Subject: Re: IE Caching Try this: % response.setHeader("Pragma", "no-cache"); if( request.getProtocol().equals("HTTP/1.1")

Re: IE Caching

2001-02-10 Thread Jim Rudnicki
IE and Tomcat are both running on my machine, there certainly are no proxies or firewalls involved. I know IE is caching because the back button works even after shutting Tomcat down. Ah, the BACK button. Read RFC 2616 which describes HTTP/1.1 and caching and the BACK button. After

Re: IE Caching

2001-02-10 Thread Rick Roberts
Try this: % response.setHeader("Pragma", "no-cache"); if( request.getProtocol().equals("HTTP/1.1") ) {   response.setHeader("Cache-Control", "no-cache"); } % I hope it helps. It worked for me. Rick - To unsubscribe, e-mail:

Re: IE Caching

2001-02-10 Thread Rick Roberts
Try this: % response.setHeader("Pragma", "no-cache"); if( request.getProtocol().equals("HTTP/1.1") ) {   response.setHeader("Cache-Control", "no-cache"); } % I hope it helps. It worked for me. Rick - To unsubscribe, e-mail:

Re: IE Caching

2001-02-10 Thread Rick Roberts
Try this: % response.setHeader("Pragma", "no-cache"); if( request.getProtocol().equals("HTTP/1.1") ) {   response.setHeader("Cache-Control", "no-cache"); } % I hope it helps. It worked for me. Rick - To unsubscribe, e-mail:

IE Caching

2001-02-09 Thread Bernard Durfee
All, I've tried every solution that I can think of to prevent IE from caching content. I've placed every 'no-cache' meta tag and response element known to man, but IE 5.5 still caches content. Does Tomcat 3.2.1 effect the response header when sending the response back to the browser? I'm using

Re: IE Caching

2001-02-09 Thread Steve Ruby
Bernard Durfee wrote: All, I've tried every solution that I can think of to prevent IE from caching content. I've placed every 'no-cache' meta tag and response element known to man, but IE 5.5 still caches content. Does Tomcat 3.2.1 effect the response header when sending the response

Re: IE Caching

2001-02-09 Thread Craig R. McClanahan
Bernard Durfee wrote: All, I've tried every solution that I can think of to prevent IE from caching content. I've placed every 'no-cache' meta tag and response element known to man, but IE 5.5 still caches content. Does Tomcat 3.2.1 effect the response header when sending the response

Re: IE Caching

2001-02-09 Thread Bernard Durfee
Craig, Everything is coming out of JSPs, so it must be IE then. Setting IE to 'Check Everytime' works a little better, at least it won't show old content, but it still caches no matter what. This is a security issue and it's critical for me to find a solution. SSL will be used soon, which I've

RE: IE Caching

2001-02-09 Thread Randy Layman
was made) or do something similar with PathInfo. Randy -Original Message- From: Bernard Durfee [mailto:[EMAIL PROTECTED]] Sent: Friday, February 09, 2001 4:41 PM To: [EMAIL PROTECTED] Subject: Re: IE Caching Craig, Everything is coming out of JSPs, so it must be IE then. Setting

RE: IE Caching

2001-02-09 Thread DanO
!?!!?!?!!'. DanO -Original Message- From: Bernard Durfee [mailto:[EMAIL PROTECTED]] Sent: Friday, February 09, 2001 1:41 PM To: [EMAIL PROTECTED] Subject: Re: IE Caching Craig, Everything is coming out of JSPs, so it must be IE then. Setting IE to 'Check Everytime' works a little better

Re: IE Caching

2001-02-09 Thread Bernard Durfee
PROTECTED]] Sent: Friday, February 09, 2001 4:41 PM To: [EMAIL PROTECTED] Subject: Re: IE Caching Craig, Everything is coming out of JSPs, so it must be IE then. Setting IE to 'Check Everytime' works a little better, at least it won't show old content, but it still caches no matter what

RE: IE Caching

2001-02-09 Thread Randy Layman
, February 09, 2001 5:09 PM To: [EMAIL PROTECTED] Subject: RE: IE Caching i've had the same problems using tomcat, specifically with @include directives in JSPs. delete the classes in the /work directory and restart httpd. should work fine, or at least it did for me when started tearing my hear out

RE: IE Caching

2001-02-09 Thread Randy Layman
Message- From: Bernard Durfee [mailto:[EMAIL PROTECTED]] Sent: Friday, February 09, 2001 5:08 PM To: [EMAIL PROTECTED] Subject: Re: IE Caching Randy, In response to your suggestions... IE and Tomcat are both running on my machine, there certainly are no proxies or firewalls involved. I

Re: IE Caching

2001-02-09 Thread Bernard Durfee
and makes some form of an arbritray decision that it won't load? Randy -Original Message- From: Bernard Durfee [mailto:[EMAIL PROTECTED]] Sent: Friday, February 09, 2001 5:08 PM To: [EMAIL PROTECTED] Subject: Re: IE Caching Randy, In response to your suggestions

RE: IE Caching

2001-02-09 Thread Burgess, Jay
Title: RE: IE Caching Based on your previous response, I assume that when you say caching content, you don't mean that the user is seeing old content, but that IE is dropping a copy of the file into its cache directory, even with caching turned off? If so, then another setting that you might