Re: JSP page that will not update

2011-10-07 Thread Tim Watts
On Fri, 2011-10-07 at 09:05 -0400, Stephen Caine wrote: > OK, but can you point me to where I might learn how to do this? See JavaDocs for HttpServletResponse; also RFC2616 (HTTP 1.1) http://datatracker.ietf.org/doc/rfc2616/ But really, don't bother with this until you understand what th

Re: JSP page that will not update

2011-10-07 Thread Stephen Caine
Konstantin >> >> I have set meta tags for no cache, no pragma, etc., all to no avail. > > What do you mean? > tags inside HTML document are useless for this. You have to set > HTTP headers. OK, but can you point me to where I might learn how to do this? >> >> What is most interesting is that a

Re: JSP page that will not update

2011-10-06 Thread Konstantin Kolinko
2011/10/7 Stephen Caine : > > I have set meta tags for no cache, no pragma, etc., all to no avail. What do you mean? tags inside HTML document are useless for this. You have to set HTTP headers. > > What is most interesting is that all of this worked in Tomcat 5.5.7, but now > using Tomcat 5.5.

Re: JSP page that will not update

2011-10-06 Thread Stephen Caine
Konstantin, Thank you for your reply. I will try to be more specific. The function I have on the page is a simple call to the OS (Mac) for the current date and time. The first time the page is called, the current date and time is shown. However, if the window is closed and the page is called

Re: JSP page that will not update

2011-10-06 Thread Konstantin Kolinko
2011/10/7 Stephen Caine : > List users, > > I recently updated to Tomcat 5.5.34 from 5.5.7.  Keeping all the > configuration files the same, I now notice that a jsp page that opens cached > data whereas before the page always loaded updated data.  The call to the > page is via a javascript using

JSP page that will not update

2011-10-06 Thread Stephen Caine
List users, I recently updated to Tomcat 5.5.34 from 5.5.7. Keeping all the configuration files the same, I now notice that a jsp page that opens cached data whereas before the page always loaded updated data. The call to the page is via a javascript using window.open. Some questions… 1. H