Re: Disable Tomcat from caching

2009-08-07 Thread Epithemeus
Hi everyone, I am facing the same problem as Steve had mentioned earlier. I am using Tomcat 6.0 and have tried including cachingAllowed="false" in $CATALINA_HOME/conf/context.xml. This does not seem to work. I cannot locate any folder for application cache in /work/Catalina/localhost/. It woul

Re: Disable Tomcat from caching

2008-12-26 Thread Tina Hua
Steve, Check out this link. I implemented the cachingAllowed="false"> in the .xml file and the .xml kept displaying the same old content itself. I removed the "application cache" folder in the usr/jakarta-tomcat-5.0.27/work/Catalina/localhost/ and it worked like a charm! Good luck! http://ma

Re: Disable Tomcat from caching

2008-10-22 Thread Filip Hanik - Dev Lists
hi Steve, >I have a JSP page (Display.jsp) that retrieves a xml file how do you achieve this? depending on how you load the XML, will determine how we troubleshoot why it is cached if it is statically included in the JSP, then it would be compiled into the class, take a look at Display_jsp

Re: Disable Tomcat from caching

2008-10-22 Thread ISteve
Thank Filip. I added cachingAllowed ="false" to context.xml. but it still doesn't work. the xml file is not the latest. I added in TC_Home/conf/context.xml WEB-INF/web.xml and add it in my application_folder/META-INF/context.xml Is there any mistake in my configurat

Re: Disable Tomcat from caching

2008-10-21 Thread Filip Hanik - Dev Lists
look for "|cachingAllowed" in http://tomcat.apache.org/tomcat-6.0-doc/config/context.html you can put this in TC_HOME/conf/context.xml Filip | steve sim wrote: > Hi everyone, > > I would appreciate if someone could help me in this problem. > Disable Tomcat from caching my xml file. > > I ha