Re: Tomcat6/Cocoon 2.1.10 using 100% CPU on windows

2011-01-03 Thread Johan Cwiklinski
Hello and best wishes for 2011 :) Le 23/12/2010 18:38, Johan Cwiklinski a écrit : Hi, Le 23/12/2010 10:49, Johan Cwiklinski a écrit : I've just put the 2.1.11 RessourceReader class into my WEB-INF/classes directory ; I'm currently testing that way on the server (would be great if I can

Re: Tomcat6/Cocoon 2.1.10 using 100% CPU on windows

2010-12-23 Thread Johan Cwiklinski
Hello, Le 22/12/2010 17:12, Johan Cwiklinski a écrit : Le 22/12/2010 15:14, Laurent Medioni a écrit : Time to swich to 2.1.11 then ;) ResourceReader in 2.1.10: private static final Map documents = new HashMap(); ResourceReader in 2.1.11: private static final Map documents =

Re: Tomcat6/Cocoon 2.1.10 using 100% CPU on windows

2010-12-23 Thread Johan Cwiklinski
Hi, Le 23/12/2010 10:49, Johan Cwiklinski a écrit : I've just put the 2.1.11 RessourceReader class into my WEB-INF/classes directory ; I'm currently testing that way on the server (would be great if I can solve this problem until I can spend some time for 2.1.11 upgrade ;)). Well... It seems

RE: Tomcat6/Cocoon 2.1.10 using 100% CPU on windows

2010-12-22 Thread Laurent Medioni
Hi, have you tried to upgrade to the latest JDK fix available ? Laurent • This email and any files transmitted with it are CONFIDENTIAL and intended solely for the use of the individual or entity to which they are addressed. • Any

Re: Tomcat6/Cocoon 2.1.10 using 100% CPU on windows

2010-12-22 Thread andre . davignon
Hi Johan, Does the same problem occur with mod_proxy (full http) instead of mod_proxy_ajp. We have encountered some problems with mod_proxy_ajp that were solved by using simple mod_proxy. Cheers, buddy. André -Original Message- From: Johan Cwiklinski johan.cwiklin...@ajlsm.com Date:

Re: Tomcat6/Cocoon 2.1.10 using 100% CPU on windows

2010-12-22 Thread Johan Cwiklinski
Hello, Le 22/12/2010 11:53, Laurent Medioni a écrit : Hi, have you tried to upgrade to the latest JDK fix available ? Not yet, I'll try that this afternoon. I have already tested that with at least two jdk versions (_17 and _21). Laurent Thank you, Johan

Re: Tomcat6/Cocoon 2.1.10 using 100% CPU on windows

2010-12-22 Thread Johan Cwiklinski
Hello André, Le 22/12/2010 13:23, andre.davig...@free.fr a écrit : Hi Johan, Does the same problem occur with mod_proxy (full http) instead of mod_proxy_ajp. We have encountered some problems with mod_proxy_ajp that were solved by using simple mod_proxy. Yes, I also have tested with

RE: Tomcat6/Cocoon 2.1.10 using 100% CPU on windows

2010-12-22 Thread Laurent Medioni
Time to swich to 2.1.11 then ;) ResourceReader in 2.1.10: private static final Map documents = new HashMap(); ResourceReader in 2.1.11: private static final Map documents = Collections.synchronizedMap(new HashMap()); See https://issues.apache.org/jira/browse/COCOON-1977 Laurent

Re: Tomcat6/Cocoon 2.1.10 using 100% CPU on windows

2010-12-22 Thread Johan Cwiklinski
Le 22/12/2010 15:14, Laurent Medioni a écrit : Time to swich to 2.1.11 then ;) ResourceReader in 2.1.10: private static final Map documents = new HashMap(); ResourceReader in 2.1.11: private static final Map documents = Collections.synchronizedMap(new HashMap()); See