FW: Tomcat, JSP and Cache

2000-12-05 Thread Adress, David S.
I was wondering if anyone can help. I have tomcat server 3.1 running a servlet and jsp page. I have a servlet calling a jsp page with the redirect method. I've put the required meta tags on the jsp page so the page should not cache. However, the page is still caching. In order for my page to disp

Re: FW: Tomcat, JSP and Cache

2000-12-05 Thread javabettin
Create the headers through jsp as follows: response.setHeader("Cache-Control","no-cache"); response.setHeader("Pragma","no-cache"); Dave --- "Adress, David S." <[EMAIL PROTECTED]> wrote: > I was wondering if anyone can help. I have tomcat > server 3.1 running a > servlet and jsp page. > I have

Re: FW: Tomcat, JSP and Cache

2000-12-05 Thread Kurt Bernhard Pruenner
"Adress, David S." wrote: > I was wondering if anyone can help. I have tomcat server 3.1 running a > servlet and jsp page. > I have a servlet calling a jsp page with the redirect method. I've put the > required meta tags on the jsp page so the page should not cache. However, > the page is still c

RE: FW: Tomcat, JSP and Cache

2000-12-05 Thread Adress, David S.
I tried that and it still happens. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 05, 2000 12:13 PM To: [EMAIL PROTECTED] Subject: Re: FW: Tomcat, JSP and Cache Create the headers through jsp as follows: response.setHeader("Cache-Co

RE: FW: Tomcat, JSP and Cache

2000-12-06 Thread NESTORS Andris (AC-Creation)
M # To: '[EMAIL PROTECTED]' # Subject: RE: FW: Tomcat, JSP and Cache # # # I tried that and it still happens. # # -Original Message- # From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] # Sent: Tuesday, December 05, 2000 12:13 PM # To: [EMAIL PROTECTED] # Subject: Re: FW: T

RE: FW: Tomcat, JSP and Cache

2000-12-06 Thread Adress, David S.
loyee List Employee List <% response.setDateHeader("Expires",0); %> -Original Message- From: NESTORS Andris (AC-Creation) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 06, 2000 6:24 AM To: '[EMAIL PROTECTED

Re: FW: Tomcat, JSP and Cache

2000-12-06 Thread Sebastian Schulz
> > > > <% response.setDateHeader ("Expires", 0); %> > > > You need to put it at the top of the page, as you would expect, and ALSO at > the the bottom of the page, to get around a bug in some browsers e.g. MS > Internet Explorer. this is client-side stuff, so even if that wor