RE: Updating Java

2010-01-14 Thread Robin Wilson
You could just download the Sun JDK rpm and manually install it using the command line. Then point your "JAVA_HOME" environment variable to where you installed it. -- Robin D. Wilson Director of Web Development KingsIsle Entertainment, Inc. CELL: 512-426-3929 DESK: 512-623-5913 www.KingsIsle.com

RE: Updating Java

2010-01-14 Thread Caldarale, Charles R
> From: Rick Bragg [mailto:li...@gmnet.net] > Subject: Updating Java > > So, I guess I need to either upgrade Java to some newer version, or > downgrade to Java 5. 1.6.0_0 is pretty ancient. Download and install a current Linux-64 JVM from Sun: http://java.sun.com/javase/downloads/widget/jdk6.j

Updating Java

2010-01-14 Thread Rick Bragg
Hi, I need to install a package called "cyclos" (cyclos.org) and according to the documentation requires the following: Java Runtime Environment (JRE), Java 1.5 (aka 5.0) is required. If you use Java 6 (aka 1.6), ensure the version is 1.6.0_04 or later (versions 1.6.0_00 to 1.6.0_03 won't work).

Re: Classloader between Web application and system loader

2010-01-14 Thread Mark Thomas
On 14/01/2010 23:45, youngm wrote: >> Won't help. The servlet spec requires that classes in the web >> application take priority. > > The only quote I was able to find from the servlet spec was: > > "It is recommended also that the application class loader be > implemented so that classes and res

Re: trouble connecting with mod_jk to my Tomcat "missing uri map for 127.0.0.1:"

2010-01-14 Thread Rick Hightower
I had worker.worker1.host=127.0.0.0 when I meant to do worker.worker1.host=127.0.0.1 My buddy Ed pointed it out. I changed that, and I still get the same error. I can access /hello context directly from Tomcat using localhost:8080/hello or 127.0.0.1/hello . I'd like to be

RE: Classloader between Web application and system loader

2010-01-14 Thread Caldarale, Charles R
> From: youngm [mailto:you...@gmail.com] > Subject: Re: Classloader between Web application and system loader > > * If I'm administering an environment with 20-30 tomcat apps > all of which require the new database driver this is a rather > more difficult process for middleware engineers (not dev

Re: Classloader between Web application and system loader

2010-01-14 Thread youngm
>Very bad idea. Search the archives for a long list of things that go >wrong when you start changing the class path. Not to mention that would >make the new driver visible to all web applications not just the web app >that needed the new jar file. And you'd need to restart Tomcat for the >changes

Re: Trouble installing Tomcat.

2010-01-14 Thread Rick Bragg
On Wed, 2010-01-13 at 22:49 +, Mark Thomas wrote: > On 13/01/2010 22:48, Rick Bragg wrote: > > Hi, > > > > I have installed Tomcat, and I get the "It Works" page perfect, however, > > when I try to go to the manager webapp I get the unauthorized 401 error. > > > > I have the following in my c

trouble connecting with mod_jk to my Tomcat "missing uri map for 127.0.0.1:"

2010-01-14 Thread Rick Hightower
I am having some trouble connecting with mod_jk to my Tomcat instance. The requests seem to be processed by mod_jk but are never forwarded to Tomcat. I keep getting this trace message from mod_jk.log file "missing uri map for 127.0.0.1:/hello". (see formatted config listings at http://www.jroller.

Re: IIS with Tomcat - where the installation is different machines

2010-01-14 Thread Konstantin Kolinko
2010/1/15 jaganr : > I would like to configure IIS and Tomcat where IIS is in one server and > tomcat on an another server. Please help on this configuration. Thanks > http://tomcat.apache.org/connectors-doc/ http://tomcat.apache.org/connectors-doc/reference/iis.html also search the users@ list a

Re: Tomcat behind proxy listening just for localhost

2010-01-14 Thread Konstantin Kolinko
2010/1/15 dennis.winter : > > Hey, > I'm new to Tomcat, i've set up the tomcat and apache with mod_proxy as > proxy. > So, it's working great, but tomcat is available from every domain. > I would like to configure tomcat, so that it only listens to calls on the > local machine! > > I hope anyone kn

Re: Classloader between Web application and system loader

2010-01-14 Thread Mark Thomas
On 14/01/2010 22:19, youngm wrote: > I personally don't like any of the options. If you articulated your concerns, then we might be able to show you solutions to them. > Here are a couple of solutions > that I might like a little more. I'd be curious if anyone likes any of > these. > > 1. modif

Re: Classloader between Web application and system loader

2010-01-14 Thread youngm
Ok, so to sum up this is what I've gathered. Here is my hypothetical situation. I have a .war running in production. This war embeds an oracle driver in its WEB-INF/lib. Middleware discovers that there is a security vulnerability in this oracle driver and need to do an emergency upgrade of the

Re: mod_jk: plus-character causes %-encoding problems

2010-01-14 Thread Tero Karttunen
> Is UTF-8 the reason why you are using your custom decoding? > [...] > You should be able to use HttpServletRequest.getPathInfo() to get the > decoded value. Not really. I could probably be using getPathInfo() for getting the decoded request. But note that I am also decoding both the former urls

Tomcat behind proxy listening just for localhost

2010-01-14 Thread dennis.winter
Hey, I'm new to Tomcat, i've set up the tomcat and apache with mod_proxy as proxy. So, it's working great, but tomcat is available from every domain. I would like to configure tomcat, so that it only listens to calls on the local machine! I hope anyone knows, what i mean! Kind regards, Dennis.

IIS with Tomcat - where the installation is different machines

2010-01-14 Thread jaganr
Hi, I would like to configure IIS and Tomcat where IIS is in one server and tomcat on an another server. Please help on this configuration. Thanks -Jagan -- View this message in context: http://old.nabble.com/IIS-with-Tomcat---where-the-installation-is-different-machines-tp27168280p27168280.ht

RE: Tomcat + Apache + AJP = high cpu usage:/

2010-01-14 Thread pionier
pionier wrote: > > > > n828cl wrote: >> >>> From: pionier [mailto:pionierp...@interia.pl] >>> Subject: Re: Tomcat + Apache + AJP = high cpu usage:/ >>> >>> that is imposible... my virtual unix account do not allow that >> >> Whatever userid you're starting httpd with that uses port 80 will

Re: mod_jk: plus-character causes %-encoding problems

2010-01-14 Thread Konstantin Kolinko
2010/1/14 Tero Karttunen : >> Why is '+' decoded to ' ' in the path part of the URL? >> That is, I think, wrong. > > This is an interesting theory. If true, it could provide an > explanation to the observed behavior, but I cannot completely follow > it. > >> The '+' char has no special meaning in H

Re: mod_jk: plus-character causes %-encoding problems

2010-01-14 Thread Tero Karttunen
> Why is '+' decoded to ' ' in the path part of the URL? > That is, I think, wrong. This is an interesting theory. If true, it could provide an explanation to the observed behavior, but I cannot completely follow it. > The '+' char has no special meaning in HTTP/1.1 (RFC 2616) [1], so in > the pa

Re: Classloader between Web application and system loader

2010-01-14 Thread Konstantin Kolinko
2010/1/14 youngm : > > >>Put expanded classes into WEB-INF/classes. >>Likewise, in CATALINA_BASE/lib > > So CATALINA_BASE/lib jars and classes are used before the application > (WEB-INF/lib and /classes)? > No, they are not. WEB-INF is used before CATALINA_BASE, but actually that is a more compli

RE: Tomcat memory settings

2010-01-14 Thread Caldarale, Charles R
> From: Leo Donahue - PLANDEVX [mailto:leodona...@mail.maricopa.gov] > Subject: RE: Tomcat memory settings > > I have both values set to 512MB. That's actually kind of small for this day and age, even on a 32-bit system. > Looking at the log files, the OOME appears in the logs after long > perio

RE: how to encrypt password in data source config in context.xml

2010-01-14 Thread Caldarale, Charles R
> From: WM C [mailto:doublecr...@live.com] > Subject: how to encrypt password in data source config in context.xml > > In the data source declaration, database username, password needs to be > provided, and they are in plain text! Think about it: either the password or the decryption key used to

RE: Tomcat memory settings

2010-01-14 Thread Leo Donahue - PLANDEVX
>> Where does the image come from and how is it handled? Sometimes image >> generation can be a problem. The image is generated by software called ArcIMS. ArcIMS uses a xml file called a map configuration file that has "pointers" to all of the GIS data layers and images. The map configuration

IIS and Apache Tomcat Connector

2010-01-14 Thread Luis Esquivel
Hello, I am using IIS7 and I am currently trying to get the "Integrated Windows Authentication" to work. Meaning, I want to use the already authenticated user. The connector works ok in an internet web app. I need to now create an Intranet app with "Integrated Windows Authentication". I ha

RE: Config IIS in tomcat 5 and 6 at sane time

2010-01-14 Thread Caldarale, Charles R
> From: Carlox [mailto:cegh0...@gmail.com] > Subject: Config IIS in tomcat 5 and 6 at sane time > > Hi! I´m trying to config the IIS in 2 Apache servers using the > ISAPI filters. > I have one server with tomcat 5.5 and other with tomcat 6 but the > system don't run. http://www.catb.org/~esr/faq

how to encrypt password in data source config in context.xml

2010-01-14 Thread WM C
Hi All - Sorry if this question seems dumb, but here it is: In the data source declaration, database username, password needs to be provided, and they are in plain text! For the application, data source works fine, but I feel it is really not safe - anybody who can access the s

RE: How to encrypt password in Data Source Declaration

2010-01-14 Thread WM C
sorry about that. Did not realize I was doing it. William > Date: Thu, 14 Jan 2010 18:00:46 + > From: ma...@apache.org > To: users@tomcat.apache.org > Subject: Re: How to encrypt password in Data Source Declaration > > Please do not hijack threads. > > To ask a new question, create a n

Config IIS in tomcat 5 and 6 at sane time

2010-01-14 Thread Carlox
Hi! I´m trying to config the IIS in 2 Apache servers using the ISAPI filters. I have one server with tomcat 5.5 and other with tomcat 6 but the system don't run. -- View this message in context: http://old.nabble.com/Config-IIS-in-tomcat-5-and-6-at-sane-time-tp27165931p27165931.html Sent from

Re: Tomcat + Apache + AJP = high cpu usage:/

2010-01-14 Thread Peter Crowther
2010/1/14 pionier > that is imposible... my virtual unix account do not allow that :/ > > OK. I noticed you didn't tell us before what OS you were running on. Please tell us about the operating system you're running on. At the moment, we're guessing. - Peter

Re: How to encrypt password in Data Source Declaration

2010-01-14 Thread Mark Thomas
Please do not hijack threads. To ask a new question, create a new message. Do not reply to an old one (even if you change the subject). Mark On 14/01/2010 17:54, WM C wrote: > > Hi All - > > > > Sorry if this question seems dumb, but here it is: > > > > In the data source declaration, d

Re: servlet access to static resources (pictures)

2010-01-14 Thread Patrick Flaherty
That make sense. Thank you. -P On Jan 14, 2010, at 10:20 AM, Caldarale, Charles R wrote: From: Patrick Flaherty [mailto:pflah...@rampageinc.com] Subject: Re: servlet access to static resources (pictures) Can I remove the from the www.ft.com altogether ? (It's and - be precise; case mat

How to encrypt password in Data Source Declaration

2010-01-14 Thread WM C
Hi All - Sorry if this question seems dumb, but here it is: In the data source declaration, database username, password needs to be provided, and they are in plain text! For the application, data source works fine, but I feel it is really not safe - anybody who can access the server

Re: Tomcat memory settings

2010-01-14 Thread Pid
On 14/01/2010 16:48, Leo Donahue - PLANDEVX wrote: Chris, Thank you for the feedback. I followed Chuck's advice and set the initial and maximum memory pool using the tomcat6w.exe I have both values set to 512MB. Windows Server 2003 Standard SP2 32-bit Tomcat 6.0.20 The Java Virtual Machine:

Re: Basic Auth - Adding Client Header

2010-01-14 Thread Pid
On 14/01/2010 16:20, cgswtsu78 wrote: Hello, I have tomcat based application that is invoked from the apache side through mod_jk. I've setup basic auth on the apache side and the very first request to tomcat works as expected (challenged when not logged in, not challenged when logged in), but

RE: Tomcat memory settings

2010-01-14 Thread Leo Donahue - PLANDEVX
Chris, Thank you for the feedback. I followed Chuck's advice and set the initial and maximum memory pool using the tomcat6w.exe I have both values set to 512MB. Windows Server 2003 Standard SP2 32-bit Tomcat 6.0.20 The Java Virtual Machine: C:\Program Files\Java\jdk1.6.0_14\jre\bin\server\jv

Re: log viewer

2010-01-14 Thread Mark H. Wood
Oh, come on, guys. The log4j package includes the log viewers "chainsaw" and "lf5". There are probably others, but these are the only ones I can recall quickly. (And I'm not at all experienced with either one yet, sorry.) -- Mark H. Wood, Lead System Programmer mw...@iupui.edu Friends don't l

Basic Auth - Adding Client Header

2010-01-14 Thread cgswtsu78
Hello, I have tomcat based application that is invoked from the apache side through mod_jk. I've setup basic auth on the apache side and the very first request to tomcat works as expected (challenged when not logged in, not challenged when logged in), but any subsequent request and an http stat

RE: Tomcat + Apache + AJP = high cpu usage:/

2010-01-14 Thread pionier
n828cl wrote: > >> From: pionier [mailto:pionierp...@interia.pl] >> Subject: Re: Tomcat + Apache + AJP = high cpu usage:/ >> >> that is imposible... my virtual unix account do not allow that > > Whatever userid you're starting httpd with that uses port 80 will also let > you run Tomcat on por

RE: Tomcat + Apache + AJP = high cpu usage:/

2010-01-14 Thread Caldarale, Charles R
> From: pionier [mailto:pionierp...@interia.pl] > Subject: Re: Tomcat + Apache + AJP = high cpu usage:/ > > that is imposible... my virtual unix account do not allow that Whatever userid you're starting httpd with that uses port 80 will also let you run Tomcat on port 80 - but you do have to sto

Re: Tomcat + Apache + AJP = high cpu usage:/

2010-01-14 Thread pionier
Peter Crowther wrote: > > 2010/1/14 pionier > >> Tomcat : >> 6.0.20 >> Im useing apache only for transfering request from 80 to 8080 >> High CPU usage starts exacly the same time i start apache... >> >> Then uninstall httpd, set up an HTTP connector on port 80 on Tomcat, and > run just Tomcat

Re: Tomcat + Apache + AJP = high cpu usage:/

2010-01-14 Thread Peter Crowther
2010/1/14 pionier > Tomcat : > 6.0.20 > Im useing apache only for transfering request from 80 to 8080 > High CPU usage starts exacly the same time i start apache... > > Then uninstall httpd, set up an HTTP connector on port 80 on Tomcat, and run just Tomcat. - Peter

Re: Tomcat dies suddenly (was JVM goes away)

2010-01-14 Thread Carl
Yes, Slackware, version 13, 64bit. I had done this manually (looked through each log for any evidence of a failure) but had not done it your automated way. Just did your automated way and it found nothing (I included all the messages logs)... bummer. The server I brought up Tuesday is using

RE: servlet access to static resources (pictures)

2010-01-14 Thread Caldarale, Charles R
> From: Patrick Flaherty [mailto:pflah...@rampageinc.com] > Subject: Re: servlet access to static resources (pictures) > > Can I remove the from the www.ft.com altogether ? (It's and - be precise; case matters, even on Windows.) The element should never have been in server.xml. > I don't

Re: Tomcat + Apache + AJP = high cpu usage:/

2010-01-14 Thread pionier
pionier wrote: > > > > Peter Crowther wrote: >> >> Apart from one guess, not without a lot more information or Andre's >> Internet Telepathy add-on ;-). >> >> The guess: You've defined an AJP connector in Tomcat's configuration, >> but you're not using that from httpd. You're using mod_pro

RE: Classloader between Web application and system loader

2010-01-14 Thread Caldarale, Charles R
> From: Pid [mailto:p...@pidster.com] > Subject: Re: Classloader between Web application and system loader > > You might get away with adding individual classes to the classloader > tree, but multiple jars containing the same class is likely to cause > problems. In fact, I'm not even sure the for

RE: Mapping properties file

2010-01-14 Thread Caldarale, Charles R
> From: Roman Sokolyuk [mailto:romsok.t...@gmail.com] > Subject: Mapping properties file > > For Tomcat I put the following in server.xml > name="my.properties" > type="java.lang.String" > value="C:/.../my.properties" /> Where exactly did you place the above (show us your

Re: Tomcat dies suddenly (was JVM goes away)

2010-01-14 Thread Pid
On 14/01/2010 14:36, Carl wrote: David, I am such a dufuss... didn't even notice it cycled after it finished a test. After almost 24 hours, showing no failures. Time to call Dell. If there's no memory hardware issue, then we're back to software. You were on linux right? Did you search the OS

RE: AW: HowTo restart VHosts on 6.0.20

2010-01-14 Thread Caldarale, Charles R
> From: Alexander Diedler [mailto:adied...@tecracer.de] > Subject: AW: AW: HowTo restart VHosts on 6.0.20 > > I copy the complete manager dir from webapps to C:\apps\webapps1 > But I seems not to work, 404. What URL are you using? I'm also suspicious of your directory structure. Please post you

Re: Tomcat dies suddenly (was JVM goes away)

2010-01-14 Thread Carl
David, I am such a dufuss... didn't even notice it cycled after it finished a test. After almost 24 hours, showing no failures. Time to call Dell. Thanks, Carl - Original Message - From: "David kerber" To: "Tomcat Users List" Sent: Thursday, January 14, 2010 8:48 AM Subject: Re:

Re: Tomcat dies suddenly (was JVM goes away)

2010-01-14 Thread Peter Crowther
2010/1/14 David kerber : > Memtest86, which I believe is the same one Peter suggested (or at least a > variation of it).  It just loops continuously until stopped. I suggested memtest86+ (http://www.memtest.org/). Memtest86 (http://www.memtest86.com/) is also available; I moved to the + version w

Re: Tomcat dies suddenly (was JVM goes away)

2010-01-14 Thread David kerber
Memtest86, which I believe is the same one Peter suggested (or at least a variation of it). It just loops continuously until stopped. Carl wrote: David, What do you use for your mem testing? I am using the memTest suggested by Peter... after six tests, it still shows all memory is OK. Pr

Re: Tomcat dies suddenly (was JVM goes away)

2010-01-14 Thread Carl
David, What do you use for your mem testing? I am using the memTest suggested by Peter... after six tests, it still shows all memory is OK. Probably call Dell this morning. TIA, Carl - Original Message - From: "David Kerber" To: "Tomcat Users List" Sent: Wednesday, January 13,

RE: NIO-connector problems (excessive CPU-usage)

2010-01-14 Thread Tobias Lind
Hello! I think I have something for you to reproduce this issue. I managed to create a test-servlet which causes the problem (every time) when I call it on Linux kernel 2.4 with the NIO-connector (and no problem in kernel 2.6 or with the BIO-connector). I have also created a VMWare-installation of

AW: AW: HowTo restart VHosts on 6.0.20

2010-01-14 Thread Alexander Diedler
Hmm ok. I copy the complete manager dir from webapps to C:\apps\webapps1 But I seems not to work, 404. Greetings Alexander -Ursprüngliche Nachricht- Von: CBy-2 [mailto:tom...@byrman.demon.nl] Gesendet: Donnerstag, 14. Januar 2010 13:21 An: users@tomcat.apache.org Betreff: Re: AW: HowTo

Re: AW: HowTo restart VHosts on 6.0.20

2010-01-14 Thread CBy-2
markt-2 wrote: > > That isn't wrong - that is by design. The links on the manager page that > lists deployed applications aren't guaranteed to work since there is no > guarantee that a webapp will respond to an http GET request of > /contextpath. Nearly all do, but the manager is one of the exc

Re: allowTrace="false" allowing Trace Method

2010-01-14 Thread Pid
On 14/01/2010 11:16, iainmac wrote: Sorry, not sure what you want an example of, and not sure what you mean when you ask what connectors I am using (not really an expert) The Connectors are defined in the server.xml file. Either HTTP or AJP, it should be clear which. Using Tomcat 5.0.16.

Re: AW: HowTo restart VHosts on 6.0.20

2010-01-14 Thread Mark Thomas
On 14/01/2010 12:00, CBy-2 wrote: > > > markt-2 wrote: >> >> CBy-2 left out an important detail. You'll need to copy the manager >> directory (and all the contents) from /webapps to /webappA >> >> There are ways to organise this so you only have a single manager >> directory but just copying it i

Re: AW: HowTo restart VHosts on 6.0.20

2010-01-14 Thread CBy-2
markt-2 wrote: > > CBy-2 left out an important detail. You'll need to copy the manager > directory (and all the contents) from /webapps to /webappA > > There are ways to organise this so you only have a single manager > directory but just copying it is the quickest solution. > I didn't mentio

Re: AW: HowTo restart VHosts on 6.0.20

2010-01-14 Thread Mark Thomas
On 14/01/2010 11:13, Alexander Diedler wrote: > This seems not to work. > I have copied the original manager.xml from /conf/Catalina/localhost to > /conf/Catalina/webapp1/manager.xml > 404 CBy-2 left out an important detail. You'll need to copy the manager directory (and all the contents) from /w

Re: allowTrace="false" allowing Trace Method

2010-01-14 Thread iainmac
Sorry, not sure what you want an example of, and not sure what you mean when you ask what connectors I am using (not really an expert) Using Tomcat 5.0.16. My workaround did pass the security scan. Strangely I had the same version of Tomcat on a different box where the allowTrace="false" did wh

AW: HowTo restart VHosts on 6.0.20

2010-01-14 Thread Alexander Diedler
This seems not to work. I have copied the original manager.xml from /conf/Catalina/localhost to /conf/Catalina/webapp1/manager.xml 404 -Ursprüngliche Nachricht- Von: CBy-2 [mailto:tom...@byrman.demon.nl] Gesendet: Donnerstag, 14. Januar 2010 11:44 An: users@tomcat.apache.org Betreff: Re

Re: Classloader between Web application and system loader

2010-01-14 Thread Pid
On 14/01/2010 02:40, youngm wrote: Put expanded classes into WEB-INF/classes. Likewise, in CATALINA_BASE/lib So CATALINA_BASE/lib jars and classes are used before the application (WEB-INF/lib and /classes)? http://tomcat.apache.org/tomcat-6.0-doc/class-loader-howto.html under Class Loader D

Re: HowTo restart VHosts on 6.0.20

2010-01-14 Thread CBy-2
Alexander Diedler wrote: > > We want to have the possibility, to reload every VHost seperatly by using > the MANAGER App in every vhost. What have we to do? > You can make the manager web app available by placing an XML fragment file with just the Context element in each Conf/Catalina/[virtua

RE: Overwriting and not overwriting when re-deploying a warfile

2010-01-14 Thread Ludwig Magnusson
Ok thanks, I'll investigate the solution. /Ludwig -Original Message- From: peter.crowth...@googlemail.com [mailto:peter.crowth...@googlemail.com] On Behalf Of Peter Crowther Sent: den 14 januari 2010 11:29 To: Tomcat Users List Subject: Re: Overwriting and not overwriting when re-deploying

Re: Overwriting and not overwriting when re-deploying a warfile

2010-01-14 Thread Peter Crowther
2010/1/14 Ludwig Magnusson : > I have a problem when i deploy a new version of my webapp. I want some of > the files in my exisiting webapp to be overwritten, and I want some to be > left as they are. [...] > Is this possible in any way? Not if the files are stored directly under the webapp. I be

Re: Tomcat + Apache + AJP = high cpu usage:/

2010-01-14 Thread pionier
Peter Crowther wrote: > > Apart from one guess, not without a lot more information or Andre's > Internet Telepathy add-on ;-). > > The guess: You've defined an AJP connector in Tomcat's configuration, > but you're not using that from httpd. You're using mod_proxy to > forward requests from ht

Overwriting and not overwriting when re-deploying a warfile

2010-01-14 Thread Ludwig Magnusson
Hi! I have a problem when i deploy a new version of my webapp. I want some of the files in my exisiting webapp to be overwritten, and I want some to be left as they are. Let's say that this is the structure of my app: /myapp/templates /myapp/uploads Templates contains the templates that buil

HowTo restart VHosts on 6.0.20

2010-01-14 Thread Alexander Diedler
Hello, We have created a 2 node cluster with Apache 2.2.14 and Tomcat 6.0.20. In the Tomcat install path there are a lot of VHosts (it is so called?): Conf/Catalina/webappA with ROOT.xml Conf/Catalina/webappB with ROOT.xml Conf/Catalina/webappC with ROOT.xml Conf/Catalina/localhost manager.xml and

Re: Tomcat + Apache + AJP = high cpu usage:/

2010-01-14 Thread Peter Crowther
2010/1/14 pionier : > When i configured Tomcat to work with Apache > I discovered that immediately after  i run Apache, Tomcat i using 100% of > cpu usage ;/ > can someone tell me whay is this happening ? Apart from one guess, not without a lot more information or Andre's Internet Telepathy add-on