Re: Tomcat 6: AJP Connector not started?

2010-12-20 Thread Karel Vervaeke
Cool. Thanks! On Sat, Dec 18, 2010 at 7:40 PM, Konstantin Kolinko knst.koli...@gmail.comwrote: 2010/12/18 Karel Vervaeke ka...@outerthought.org: I assume that uncommenting the SSL connector breaks things if it isn't configured. Yes, though 6.0.30 will have a fix against this, aka Failure

Re: Where does my stderr go?

2010-12-20 Thread Thomas Kloeber
Hi Chris, Christopher Schultz wrote on 17.12.2010 18:55: I can see an stderr file in there. Were you expecting anything to be in it immediately after startup? Silly question: how are you writing to stderr? yes, I put some output in one of my servlets, just to test this. I'm using System.stderr

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

2010-12-20 Thread McGibbney, Lewis John
I'm not sure the thread Tomcat points out wasn't stopped is related to Commons Logging. Could it be that you created the thread in your app? I think that you are correct here although if I post more of the log for you to see then maybe we can confirm whether it is a common issue or not

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

2010-12-20 Thread Michael Ludwig
Hi Lewis, McGibbney, Lewis John schrieb am 20.12.2010 um 09:42 (+): I'm not sure the thread Tomcat points out wasn't stopped is related to Commons Logging. Could it be that you created the thread in your app? I think that you are correct here although if I post more of the log for you

Occasional (!) error (404) Not Found with Apache Axis 1.4 web service after update to Tomcat 6.0.29

2010-12-20 Thread Felix Dierich
Hi everyone, I have a very strange issue, which only occured after an update from Tomcat 6.0.26 to 6.0.29. I have a number applications doing alltogether ~50-100 SOAP calls per minute to an Apache Axis 1.4 based web service running on Tomcat. After the Tomcat update some of these calls

APR and async request

2010-12-20 Thread spring
Hi, when I disable APR by removing the tcnative-1.dll or by removing the APR listener from server.xml async requests do not work anymore. I get immediately after the request an empty response body with status 200. I'm using TC 7.0.5 under windows 2003. Thank you.

Re: Occasional (!) error (404) Not Found with Apache Axis 1.4 web service after update to Tomcat 6.0.29

2010-12-20 Thread Konstantin Kolinko
2010/12/20 Felix Dierich f.dier...@overspeed.de: I have a very strange issue, which only occured after an update from Tomcat 6.0.26 to 6.0.29. I have a number applications doing alltogether ~50-100 SOAP calls per minute to an Apache Axis 1.4 based web service running on Tomcat. After the

Webapp undeploy failure

2010-12-20 Thread McGibbney, Lewis John
Hello list, Tried to do a bit of reading on this but the results have not come up. I am using version 6.0.26 on windows XP and all I am trying to do is undeploy (and delete from tomcat webapp folder) one webapp which is deployed every time I start my tomcat instance. Having started my

IS that a good idea moving all the common libs?

2010-12-20 Thread Luca Gervasi
Hello, I'm trying to lower the permgen needed by a large amount of webapps moving all the commonly used libs to the tomcat common libs. My questions is: how good is that idea? I read that each *same* lib in WEB-INF/lib is handled as unique, thus requiring additional permgen space. This is the

isapi_redirector.dll Problems - Bad Gateway?

2010-12-20 Thread amythyst
Hi, I am trying to get an application called JIRA to work externally on our corporate domain. We believe we have everything set up properly and have followed numoerous online instructions. The default website in IIS (version 6) is up and the ISAPI filter is loaded with the green light.

Re: Webapp undeploy failure

2010-12-20 Thread Pid
On 20/12/2010 17:13, McGibbney, Lewis John wrote: Hello list, Tried to do a bit of reading on this but the results have not come up. I am using version 6.0.26 on windows XP and all I am trying to do is undeploy (and delete from tomcat webapp folder) one webapp which is deployed every time

Re: HTTP Status 500 - Server Internal Error

2010-12-20 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Lewis, On 12/18/2010 3:27 PM, McGibbney, Lewis John wrote: This version of Jena comes with Xerces-J 2.6.1, it is installed in webapp's WEB-INF/classes/plugins/lib-xml, will this location present any issue or should I copy it to WEB-INF/lib?

Re: IS that a good idea moving all the common libs?

2010-12-20 Thread Caldarale, Charles R
On Dec 20, 2010, at 12:16, Luca Gervasi tom...@ashetic.net wrote: I'm trying to lower the permgen needed by a large amount of webapps moving all the commonly used libs to the tomcat common libs. That's a really, really bad idea. You would be intertwining all your webapps, potentially

Re: HTTP Status 500 - Server Internal Error

2010-12-20 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Micheal, On 12/19/2010 7:35 AM, Michael Ludwig wrote: In the case of Xerces, however, it is preferable to put the JAR(s) into %CATALINA_HOME%\endorsed (which may not exist but may be created) so they will be available to all of Tomcat and

Re: IS that a good idea moving all the common libs?

2010-12-20 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Luca, On 12/20/2010 12:15 PM, Luca Gervasi wrote: I'm trying to lower the permgen needed by a large amount of webapps moving all the commonly used libs to the tomcat common libs. +1 to everything Chuck said. My questions is: how good is that

Re: Where does my stderr go?

2010-12-20 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Thomas, On 12/20/2010 3:40 AM, Thomas Kloeber wrote: Hi Chris, Christopher Schultz wrote on 17.12.2010 18:55: I can see an stderr file in there. Were you expecting anything to be in it immediately after startup? Silly question: how are you

Re: HTTP Status 500 - Server Internal Error

2010-12-20 Thread Michael Ludwig
Moin Chris, Christopher Schultz schrieb am 20.12.2010 um 15:18 (-0500): On 12/19/2010 7:35 AM, Michael Ludwig wrote: In the case of Xerces, however, it is preferable to put the JAR(s) into %CATALINA_HOME%\endorsed (which may not exist but may be created) so they will be available to all of

Re: Webapp undeploy failure

2010-12-20 Thread Michael Ludwig
Pid schrieb am 20.12.2010 um 19:39 (+): On 20/12/2010 17:13, McGibbney, Lewis John wrote: Looking at server.xml I find that 'wombra' is the only webapp specified […] Don't define your app in server.xml. To understand why, search the list archives for Caldarale and context, and/or

Re: IS that a good idea moving all the common libs?

2010-12-20 Thread Michael Ludwig
Luca Gervasi schrieb am 20.12.2010 um 18:15 (+0100): I'm trying to lower the permgen needed by a large amount of webapps moving all the commonly used libs to the tomcat common libs. My questions is: how good is that idea? I read that each *same* lib in WEB-INF/lib is handled as unique,

How to put restrictions to mod_jk's log

2010-12-20 Thread Yu Kikuchi
Hello All, My Environment: RHEL 5.3 Apache 2.2.11 mod_jk 1.2.30 JBoss 5.0.0 GA When my system is highly-loaded, the messeges are printed in mod_jk.log. [mod_jk.log] [Tue Dec 21 11:31:25.958 2010] [4744:3086915888] [warn] map_uri_to_worker_ext::jk_uri_worker_map.c (962): Uri * is

tomcat 5.5.20

2010-12-20 Thread vikas . sharma
Hi, I am using Tomcat 5.5.20. I am using JNDIRealm to connect to my LDAP server. Through the bugzilla i got to know that there was connection problem in this version of tomcat with LDAP server, if the server is left idle for some time. Two logins were required by the user to log in. (bug ref-

Re: Where does my stderr go?

2010-12-20 Thread Thomas Kloeber
Chris, Christopher Schultz wrote on 20.12.2010 21:29: No wonder it's not working: System.stdout and System.stderr don't exist as far as I know. Did you mean System.err and System.out? Precision counts, especially when things aren't working the way you expect them to be. you are right. Of