RE: Caching in IE

2002-04-19 Thread Phase Web and Multimedia
To: Struts Users Mailing List Subject: RE: Caching in IE we faced some problems with IE caching.. let me know what u r looking for... -Original Message- From: Phase Web and Multimedia [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 9:26 PM To: Struts User Subject: Caching in IE Hey

RE: Caching in IE

2002-04-19 Thread Dariusz Wojtas
Don't know if it will help with newest IE, but it worked for me some time ago, when I experienced similar problem. response.setHeader(Cache-Control,no-store, no-cache, must-revalidate, post-check=0, pre-check=0); //HTTP 1.1 response.setHeader(Pragma,no-cache); //HTTP 1.0

Re(2): Caching in IE

2002-04-19 Thread waldemar . cleenewerck
i can only agree with you more -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Caching in IE

2002-04-19 Thread Bill Page
[mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 5:36 AM To: Struts Users Mailing List Subject: RE: Caching in IE Well, what I am looking for is simple. I want my pages to pass through the controller. But, when IE caches a page it brings up the cached page and completely bypasses

Re: Re(2): Caching in IE

2002-04-19 Thread Struts Developer
for those replies that BECUASE THE SUBJECT WAS CHANGED no longer thread properly. rant:peeve/ /\/\ark From: [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re(2): Caching in IE Date: 19 Apr 2002 11:49:00 +0100 i can only

RE: Re(2): Caching in IE

2002-04-19 Thread Galbreath, Mark
Your end tag would throw an XMLException. ;-) -Original Message- From: Struts Developer [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 8:10 AM To: [EMAIL PROTECTED] Subject: Re: Re(2): Caching in IE rant:peeve What is the point of using a mail client that threads messages

RE: Caching in IE

2002-04-19 Thread Phase Web and Multimedia
[mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 6:37 AM To: 'Struts Users Mailing List' Subject: RE: Re(2): Caching in IE Your end tag would throw an XMLException. ;-) -Original Message- From: Struts Developer [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 8:10 AM To: [EMAIL

RE: Caching in IE

2002-04-19 Thread Trieu, Danny
set nocache to true for the init param of your action servlet. -Original Message- From: Antony Stace [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 5:55 PM To: Struts Users Mailing List Subject: Re: Caching in IE On Thu, 18 Apr 2002 16:05:16 + SUPRIYA MISRA [EMAIL

Caching in IE

2002-04-18 Thread Phase Web and Multimedia
Hey all my fine coded compadres, I was just wondering if anyone has dealt with browsers caching pages and completely bypassing the controller and what solutions you have come up with to prevent this. I'm wide open. Brandon Goodin Phase Web and Multimedia P (406) 862-2245 F (406) 862-0354 [EMAIL

RE: Caching in IE

2002-04-18 Thread Oliver Reflé
To: Struts User Subject: Caching in IE Hey all my fine coded compadres, I was just wondering if anyone has dealt with browsers caching pages and completely bypassing the controller and what solutions you have come up with to prevent this. I'm wide open. Brandon Goodin Phase Web and Multimedia P (406

RE: Caching in IE

2002-04-18 Thread Phase Web and Multimedia
I'm not sure I follow you. But, could you expound on that a little more? Brandon -Original Message- From: Oliver Reflé [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 9:58 AM To: Struts Users Mailing List Subject: RE: Caching in IE One of my colleagues had the problem

Re: Caching in IE

2002-04-18 Thread E. Laverdiere
in IE I'm not sure I follow you. But, could you expound on that a little more? Brandon -Original Message- From: Oliver Reflé [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 9:58 AM To: Struts Users Mailing List Subject: RE: Caching in IE One of my colleagues had

RE: Caching in IE

2002-04-18 Thread SUPRIYA MISRA
] To: Struts Users Mailing List [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: RE: Caching in IE Date: Thu, 18 Apr 2002 10:01:04 -0600 I'm not sure I follow you. But, could you expound on that a little more? Brandon -Original Message- From: Oliver Reflé [mailto:[EMAIL PROTECTED]] Sent

RE: Caching in IE

2002-04-18 Thread Phase Web and Multimedia
Goodin Phase Web and Multimedia P (406) 862-2245 F (406) 862-0354 [EMAIL PROTECTED] http://www.phase.ws -Original Message- From: SUPRIYA MISRA [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 10:05 AM To: [EMAIL PROTECTED] Subject: RE: Caching in IE response.setHeader(Cache

RE: Caching in IE

2002-04-18 Thread Anne Racel
: Thursday, April 18, 2002 10:05 AM To: [EMAIL PROTECTED] Subject: RE: Caching in IE response.setHeader(Cache-Control,no-store); //HTTP 1.1 response.setHeader(Pragma,no-cache); //HTTP 1.0 response.setDateHeader (Expires, 0); //prevents caching at the proxy server From: Phase Web

Re: Caching in IE

2002-04-18 Thread Antony Stace
On Thu, 18 Apr 2002 16:05:16 + SUPRIYA MISRA [EMAIL PROTECTED] wrote: response.setHeader(Cache-Control,no-store); //HTTP 1.1 response.setHeader(Pragma,no-cache); //HTTP 1.0 response.setDateHeader (Expires, 0); //prevents caching at the proxy server I have tried this, but IE6

Re: Caching in IE

2002-04-18 Thread SUPRIYA MISRA
PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: Caching in IE Date: Fri, 19 Apr 2002 09:55:00 +0900 On Thu, 18 Apr 2002 16:05:16 + SUPRIYA MISRA [EMAIL PROTECTED] wrote: response.setHeader(Cache-Control,no-store); //HTTP 1.1 response.setHeader(Pragma,no-cache

Re: Caching in IE

2002-04-18 Thread Antony Stace
On Fri, 19 Apr 2002 02:04:46 + SUPRIYA MISRA [EMAIL PROTECTED] wrote: This works only when tomcat runs on a linux box. Does not work when tomcat runs on Windows 2000. I use IE 6.0 I can give you a link of the exact code running off two machines and u can see this phenomena. I get

RE: Caching in IE

2002-04-18 Thread Rajeshwar Rao V
we faced some problems with IE caching.. let me know what u r looking for... -Original Message- From: Phase Web and Multimedia [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 9:26 PM To: Struts User Subject: Caching in IE Hey all my fine coded compadres, I was just wondering