Problem with refreshing JSP

2005-07-11 Thread Rahul Joshi
Hello: I am using Tomcat5.5.7 with Eclipse environment. The problem I was facing was that inspite of changing or deleting & re-copying and compiling a JSP page (after re-starting the tomcat server), the browser was reading the old compiled file from work/Catalina/localhost/... I solved the

Re: Problem with refreshing JSP

2005-07-11 Thread Gurumoorthy
Well, Is it the browser or tomcat ? if it is the browser then you need to add the no-cache headers to the response regards Guru - Original Message - From: "Rahul Joshi" <[EMAIL PROTECTED]> To: Sent: Tuesday, July 12, 2005 1:50 AM Subject: Problem with refresh

Re: Problem with refreshing JSP

2005-07-12 Thread Rahul Joshi
it the browser or tomcat ? if it is the browser then you need to add the no-cache headers to the response regards Guru - Original Message - From: "Rahul Joshi" To: Sent: Tuesday, July 12, 2005 1:50 AM Subject: Problem with refreshing JSP > Hello: > > I am using

Re: Problem with refreshing JSP

2005-07-12 Thread Rob Hills
Hi Rahul, On 12 Jul 2005 at 8:19, Rahul Joshi wrote: > It is Tomcat that has these compiled files which it continues to read > from work/Catalina/localhost/ instead of the new ones. The questions > is how do we make Tomcat clear or over-write these stored compiled > files. If you set the "Reloa

Re: Problem with refreshing JSP

2005-07-12 Thread Christoph Kutzinski
Rob Hills wrote: Hi Rahul, On 12 Jul 2005 at 8:19, Rahul Joshi wrote: It is Tomcat that has these compiled files which it continues to read from work/Catalina/localhost/ instead of the new ones. The questions is how do we make Tomcat clear or over-write these stored compiled files. If you

Re: Problem with refreshing JSP

2005-07-20 Thread Travis Stevens
The other thing to note about reloading JSPs is that tomcat 5.5 seems to copy ones web context directory into its own webapps directory. Any changes to the original JSPs will not show up unless you physically copy the JSP from the original directory to the webapps directory. I use the maven:i

Re: Problem with refreshing JSP

2005-07-20 Thread Christoph Kutzinski
Travis Stevens wrote: The other thing to note about reloading JSPs is that tomcat 5.5 seems to copy ones web context directory into its own webapps directory. Any changes to the original JSPs will not show up unless you physically copy the JSP from the original directory to the webapps directo

Re: Problem with refreshing JSP

2005-07-21 Thread Travis Stevens
The other thing to note about reloading JSPs is that tomcat 5.5 seems to copy ones web context directory into its own webapps directory. Any changes to the original JSPs will not show up unless you physically copy the JSP from the original directory to the webapps directory. I haven't obs