RE: problem with mod_jk 1.2: error in action code

2004-03-15 Thread Ralph Einfeldt
I don't see any reason why an object in the context should have any thing to do with the stacktrace. What makes you think that they are related ? What makes you think that the pool is lost ? (context.getAttribute(AttribName) == null ?) Or do you just don't get connections from the pool ? Or

Re: problem with mod_jk 1.2: error in action code

2004-03-12 Thread Adam Buglass
Well I run in exactly the same environment except it's a RedHat 6.2 (-ish) box My server.xml is setup like so: !-- Define an AJP 1.3 Connector on port 8009 -- Connector className=org.apache.ajp.tomcat4.Ajp13Connector port=8009 minProcessors=3 maxProcessors=15

RE: problem with mod_jk 1.2: error in action code

2004-03-12 Thread Ralph Einfeldt
I don't think that this message has anything to with the lost connection pool. (Do you really mean 'connection pool' and not just 'connection' ?) If you lose your connection, it may be caused by the databaseserver that cancels idle connections after a while. Look for validationQuery in:

RE: problem with mod_jk 1.2: error in action code

2004-03-12 Thread Yiannis Mavroukakis
Yep I get the same errors quite often, apart from being annoying they do not cause any other issues, the error is what Ralph says it is. -Original Message- From: Ralph Einfeldt [mailto:[EMAIL PROTECTED] Sent: 12 March 2004 16:14 To: Tomcat Users List Subject: RE: problem with mod_jk 1.2

RE: problem with mod_jk 1.2: error in action code

2004-03-12 Thread Mike Curwen
when you specify the connection to mysql, are you including the 'autoreconnect=true' parameter? If not, the connections will be closed by mysql after (I think) 8 hrs. -Original Message- From: Michael Görlich (CSC) [mailto:[EMAIL PROTECTED] Sent: Friday, March 12, 2004 9:53 AM To:

Re: problem with mod_jk 1.2: error in action code

2004-03-12 Thread Mark Matthews
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Mike Curwen wrote: when you specify the connection to mysql, are you including the 'autoreconnect=true' parameter? If not, the connections will be closed by mysql after (I think) 8 hrs. I wish I could kill the 'autoReconnect' feature. You

Re: problem with mod_jk 1.2: error in action code

2004-03-12 Thread Christopher Schultz
All, when you specify the connection to mysql, are you including the 'autoreconnect=true' parameter? If not, the connections will be closed by mysql after (I think) 8 hrs. I'm not sure why everyne's caught up in database connection code. This is a Coyote connector exception -- which is the

RE: problem with mod_jk 1.2: error in action code

2004-03-12 Thread Yiannis Mavroukakis
So is autoReconnectForPools a hack to use with autoReconnect? -Original Message- From: Mark Matthews [mailto:[EMAIL PROTECTED] Sent: 12 March 2004 17:11 To: Tomcat Users List Subject: Re: problem with mod_jk 1.2: error in action code -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Mike

RE: problem with mod_jk 1.2: error in action code

2004-03-12 Thread Mike Curwen
with mod_jk 1.2: error in action code All, when you specify the connection to mysql, are you including the 'autoreconnect=true' parameter? If not, the connections will be closed by mysql after (I think) 8 hrs. I'm not sure why everyne's caught up in database connection code