On Tomcat on Linux I update the startup.sh script just before the last line (exec "$PRGDIR"/"$EXECUTABLE" start "$@") I add the following
# System Log backup mkdir $CATALINA_HOME/logs/bak >/dev/null 2>/dev/null mv -f $CATALINA_HOME/logs/*.log $CATALINA_HOME/logs/bak >/dev/null 2>/dev/null mv -f $CATALINA_HOME/logs/catalina.out $CATALINA_HOME/logs/bak >/dev/null 2>/dev/null # System cache cleanup rm -rf $CATALINA_HOME/work/Catalina/localhost/* >/dev/null 2>/dev/null # Mid-Tier app log backup mkdir $CATALINA_HOME/webapps/arsys/logs/bak >/dev/null 2>/dev/null mv -f $CATALINA_HOME/webapps/arsys/logs/*.log $CATALINA_HOME/webapps/arsys/logs/bak >/dev/null 2>/dev/null # Mid-Tier app cache cleanup rm -rf $CATALINA_HOME/webapps/arsys/cache/* >/dev/null 2>/dev/null rm -rf $CATALINA_HOME/webapps/arsys/attstore/* >/dev/null 2>/dev/null This way the cache is clean every time Tomcat starts up Fred -----Original Message----- From: Action Request System discussion list(ARSList) [mailto:[email protected]] On Behalf Of Frank Caruso Sent: Thursday, February 06, 2014 8:18 AM To: [email protected] Subject: Re: Caught Exception issue... We are also dealing with this issue. We are running ARS 764 sp2 with Midtier 8.1sp2 (Weblogic) on IE10. Some users get the error on a daily basis and others never receive it. If we being down Weblogic and manually remove the cache files (and viewstats) it helps for a few days. _______________________________________________________________________________ UNSUBSCRIBE or access ARSlist Archives at www.arslist.org "Where the Answers Are, and have been for 20 years"

