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
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
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
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
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