Re: HTTP Status 500 - Server Internal Error (continued!)

2010-12-19 Thread Michael Ludwig
McGibbney, Lewis John schrieb am 19.12.2010 um 18:56 (+): > > I managed to get over the parser issue by > following your suggestions. Fine! > I am now encountering errors with the class > org/apache/common/logging/LogFactory when I try > to launch webapp on Tomcat. Commons Logging is freque

Re: Tomcat stops responding

2010-12-19 Thread Michael Ludwig
Mark Thomas schrieb am 19.12.2010 um 17:43 (+): > On 17/12/2010 12:52, K J.Sreekumar wrote: > > > > This is the problem - > > > >1. Our tomcat 6 server (version 6.0.29) does not respond > >after working for a couple of days. Browsers are unable to > >find application URLs (which w

RE: HTTP Status 500 - Server Internal Error (continued!)

2010-12-19 Thread McGibbney, Lewis John
Hi I managed to get over the parser issue by following your suggestions. Just as I thought things were gradually getting better I am now encountering errors with the class org/apache/common/logging/LogFactory when I try to launch webapp on Tomcat. Reading my Tomcat output logs I notice the foll

Re: Tomcat stops responding

2010-12-19 Thread Mark Thomas
On 17/12/2010 12:52, K J.Sreekumar wrote: > Hello All, > > We are hitting on a weird problem with tomcat 6 production server (which is > a serious concern for us now). Hoping to get help from the you guys > > This is the problem - > >1. Our tomcat 6 server (version 6.0.29) does not respond a

Re: Tomcat stops responding

2010-12-19 Thread Konstantin Kolinko
2010/12/17 K J.Sreekumar : > The logs does not show any error. Do they show anything at all? > There are only a total of 50-60 threads in the thread dump, mostly in WAIT > state. Also, it does not show any BLOCKING or LOCKED threads. It would be interesting to look at the thread dump. If it is

Re: Tomcat stops responding

2010-12-19 Thread André Warnier
André Warnier wrote: K J.Sreekumar wrote: Hello Andre, Thank you for your attention to this query. The these entries in the netstat shows tomcat running. (These were missing in the original message and were appended in a subsequent mail.) TCP0.0.0.0:8009 0.0.0.0:0

Re: Tomcat stops responding

2010-12-19 Thread André Warnier
K J.Sreekumar wrote: Hello Andre, Thank you for your attention to this query. The these entries in the netstat shows tomcat running. (These were missing in the original message and were appended in a subsequent mail.) TCP0.0.0.0:8009 0.0.0.0:0 LISTENING 5356

Re: Tomcat stops responding

2010-12-19 Thread Michael Ludwig
K J.Sreekumar schrieb am 19.12.2010 um 17:33 (+0530): > > Yes we are using apache httpd as front-end to tomcat using mod_proxy > (not AJP). The configuration in httpd.conf are > > ProxyPass /rel/ http://localhost:8080/rel/ > ProxyPassReverse /rel/ http://localhost:8080/rel/ Do the mod_proxy logs

Re: How to automatically undeploy a context

2010-12-19 Thread Michael Ludwig
Alexandre FILLATRE schrieb am 19.12.2010 um 12:13 (+0100): > > The thing is that I'd be able to deploy some code whenever I want (in > order to cleanup my database, clear the caches, etc) Have you considered using cronjobs, or a context listener? The system you want to run a job against might als

RE: HTTP Status 500 - Server Internal Error

2010-12-19 Thread McGibbney, Lewis John
thank you for this it has been a great help Lewis From: Michael Ludwig [mil...@gmx.de] Sent: 19 December 2010 12:35 To: users@tomcat.apache.org Subject: Re: HTTP Status 500 - Server Internal Error McGibbney, Lewis John schrieb am 18.12.2010 um 21:20 (+

Re: HTTP Status 500 - Server Internal Error

2010-12-19 Thread Michael Ludwig
McGibbney, Lewis John schrieb am 18.12.2010 um 21:20 (+): > > I understand this now, my initial understanding > was that Tomcat was distributed with a version > of xerces (or some other) parser implementation Tomcat isn't, but the Sun JRE is shipping a forked and modified Apache Xerces. It ha

Re: Tomcat stops responding

2010-12-19 Thread K J.Sreekumar
Hello Andre, Thank you for your attention to this query. The these entries in the netstat shows tomcat running. (These were missing in the original message and were appended in a subsequent mail.) TCP0.0.0.0:8009 0.0.0.0:0 LISTENING 5356 [tomcat6.exe] TCP

How to automatically undeploy a context

2010-12-19 Thread Alexandre FILLATRE
Hi folks, I'd like to know how I could trigger an automatic undeploy of a context after it has been fully loaded. The thing is that I'd be able to deploy some code whenever I want (in order to cleanup my database, clear the caches, etc), and be sure this webapp will not be reloaded next time I res