RE: Tomcat 5.0.16 causes; java.lang.ArrayIndexOutOfBoundsException

2004-08-13 Thread Shapira, Yoav
Hi, Fixed long ago, update to a more modern release. Yoav Shapira Millennium Research Informatics -Original Message- From: alan sparago [mailto:[EMAIL PROTECTED] Sent: Friday, August 13, 2004 2:39 PM To: [EMAIL PROTECTED] Subject: Tomcat 5.0.16 causes;

RE: Tomcat 5.0.16 causes; java.lang.ArrayIndexOutOfBoundsException

2004-08-13 Thread alan sparago
How long ago? Im using Tomcat 5.0.16!!! -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Friday, August 13, 2004 11:46 AM To: Tomcat Users List Subject: RE: Tomcat 5.0.16 causes; java.lang.ArrayIndexOutOfBoundsException Hi, Fixed long ago, update to a more modern

RE: Tomcat 5.0.16 causes; java.lang.ArrayIndexOutOfBoundsException

2004-08-13 Thread Shapira, Yoav
: Friday, August 13, 2004 2:58 PM To: 'Tomcat Users List' Subject: RE: Tomcat 5.0.16 causes; java.lang.ArrayIndexOutOfBoundsException How long ago? Im using Tomcat 5.0.16!!! -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Friday, August 13, 2004 11:46 AM To: Tomcat

RE: Tomcat 5.0.16 causes; java.lang.ArrayIndexOutOfBoundsException

2004-08-13 Thread alan sparago
Thanks! -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Friday, August 13, 2004 12:02 PM To: Tomcat Users List Subject: RE: Tomcat 5.0.16 causes; java.lang.ArrayIndexOutOfBoundsException Hi, 5.0.16 was released in November 2003, and 5.0.19 which I think has

Re: Tomcat 5.0.16 behind SSL Accelerator - 2nd post

2004-06-23 Thread Harry Mantheakis
Hello the easiest is to just use relative links... I also find the HTML 'BASE' header tag very useful in this respect. Setting the BASE tag guarantees the relative links work, and all the links are relative to the same base directory, which makes things a little easier. Setting the BASE tag

Re: Tomcat 5.0.16 behind SSL Accelerator - 2nd post

2004-06-22 Thread Filip Hanik - Dev
how are you creating your links right now, the easiest is to just use relative links, like a href=/myapp/some.jspA Link/a here the browser will connect up using same protocol as the data came down on. or you can create your own tag, like a href=app:MyLink href=/myapp/some.jsp/A link using tag/a

RE: Tomcat 5.0.16 behind SSL Accelerator - 2nd post

2004-06-22 Thread Adrian Klingel
: Tomcat 5.0.16 behind SSL Accelerator - 2nd post how are you creating your links right now, the easiest is to just use relative links, like a href=/myapp/some.jspA Link/a here the browser will connect up using same protocol as the data came down on. or you can create your own tag, like a href

RE: tomcat 5.0.16 running out of resources

2004-02-09 Thread STOCKHOLM, Raymond
set your JAVA_OPTS accordingly to your needs in your startup.* If you need 750 Mbytes, try this : set JAVA_OPTS=-server -Xms750m -Xmx750m -XX:NewRatio=2 -Message d'origine- De : Jake Alley [mailto:[EMAIL PROTECTED] Envoyé : dimanche 8 février 2004 15:23 À : [EMAIL PROTECTED] Objet :

Re: tomcat 5.0.16 running out of resources

2004-02-08 Thread Josh Rehman
Sun's javac that comes with the 1.3 sdk leaks memory. This is a known issue. 1.4+ and jikes can fix it. To my mind the (much) better way is to precompile your JSPs. Check out: http://jakarta.apache.org/tomcat/tomcat-5.0-doc/jasper-howto.html This has the added benefit of avoiding that annoying

Re: tomcat 5.0.16 running out of resources

2004-02-08 Thread David Strupl
Hi, also consider upgrading to 5.0.18 - there was a memory leak fixed in tomcat. You can search the archive of this conference to find more info. Best, David Jake Alley wrote: Hi, I'm running Tomcat 5.0.16 and I'm getting the following error peiiodically: The system is out of resources.

Re: Re: Re: TOmcat 5.0.16 console error,Pls help

2004-02-02 Thread Alvaro Seixas
Subject: Re: Re: Re: TOmcat 5.0.16 console error,Pls help Hi, This is an update to the previous HelloServlet.java file,forgot to add the lines package On Mon, 02 Feb 2004 Avinash Sridhar wrote : Hi, Thanks for the help,The HelloServlet.java file is as follows

Re: Tomcat 5.0.16 startup console error

2004-02-01 Thread BAO RuiXian
Avinash Sridhar wrote: [snip...] /* Start of Error message **/ SEVERE: Cannot find message associated with key standardContext.resourcesStart java.lang.IllegalArgumentException: Document base E:\sampleapp does not exist or is not a readable directory

Re: Tomcat 5.0.16 startup console error

2004-02-01 Thread Dima Gutzeit
Change the following in the server.xml : Context path=/sampleapp docBase=sampleapp/ debug=0 reloadable=true /Context As I see from you configurations, the docbase of you application is the webapps directory of Tomcat and not at e:\ ... - Original Message - From: Avinash Sridhar

Re: TOmcat 5.0.16 console error,Pls help

2004-02-01 Thread Doug Parsons
Post your HelloServlet code or attach it. - Original Message - From: Avinash Sridhar [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, February 01, 2004 10:21 PM Subject: TOmcat 5.0.16 console error,Pls help Hi, I was told that the .class files must be put into a package in

Re: Re: TOmcat 5.0.16 console error,Pls help

2004-02-01 Thread Avinash Sridhar
Hi, Thanks for the help,The HelloServlet.java file is as follows /*HelloServlet.java***/ import java.io.*; import javax.servlet.*; import javax.servlet.http.*; /** Simple servlet used to test server. * P * Taken from Core Servlets and JavaServer Pages

Re: Re: TOmcat 5.0.16 console error,Pls help

2004-02-01 Thread Doug Parsons
- From: Avinash Sridhar [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Cc: Doug Parsons [EMAIL PROTECTED] Sent: Sunday, February 01, 2004 11:19 PM Subject: Re: Re: TOmcat 5.0.16 console error,Pls help Hi, Thanks for the help,The HelloServlet.java file is as follows

Re: Re: Re: TOmcat 5.0.16 console error,Pls help

2004-02-01 Thread Avinash Sridhar
Hi, This is an update to the previous HelloServlet.java file,forgot to add the lines package On Mon, 02 Feb 2004 Avinash Sridhar wrote : Hi, Thanks for the help,The HelloServlet.java file is as follows /*HelloServlet.java***/ package package.structure

RE: Tomcat 5.0.16 Requested resource not available

2004-01-26 Thread Shapira, Yoav
Howdy, Do you have a servlet-mapping element in your web.xml for this servlet? Doesn't look like it, and that's probably your problem. Yoav Shapira Millennium ChemInformatics -Original Message- From: dontrango [mailto:[EMAIL PROTECTED] Sent: Saturday, January 24, 2004 3:42 AM To:

RE: Tomcat 5.0.16 Requested resource not available

2004-01-26 Thread dontrango
Yup, that's my problem like Tim Funk pointed . Thanks a lot for your help. Looks like you're one of the most helpful persons on this list :) On Mon, 2004-01-26 at 22:05, Shapira, Yoav wrote: Howdy, Do you have a servlet-mapping element in your web.xml for this servlet? Doesn't look like it,

RE: Tomcat 5.0.16 jsp:useBean of type java.util.List won't compil e

2004-01-14 Thread Hume, John - NA US HQ Delray
- From: Remy Maucherat [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 3:08 PM To: Tomcat Users List Subject: Re: Tomcat 5.0.16 jsp:useBean of type java.util.List won't compile Jason Wilson wrote: I have some jsp pages that now break in Tomcat 5.0.16. In particular, my use

Re: Tomcat 5.0.16 jsp:useBean of type java.util.List won't compile

2004-01-12 Thread Remy Maucherat
Jason Wilson wrote: I have some jsp pages that now break in Tomcat 5.0.16. In particular, my use of the jsp:useBean tag is no longer working, it fails to compile. ## jsp:useBean id=myListBean scope=session class=java.util.List/ In the generated servlet, it attempts to do a ## java.util.List

Re: Tomcat 5.0.16 jsp:useBean of type java.util.List won't compile

2004-01-12 Thread Jason Wilson
--- Remy Maucherat [EMAIL PROTECTED] wrote: Jason Wilson wrote: I have some jsp pages that now break in Tomcat 5.0.16. In particular, my use of the jsp:useBean tag is no longer working, it fails to compile. ## jsp:useBean id=myListBean scope=session class=java.util.List/ In

Re: tomcat 5.0.16 Replication

2004-01-09 Thread jean-philippe . belanger
, January 08, 2004 6:43 PM To: Tomcat Users List Subject: RE: tomcat 5.0.16 Replication ok guys, good news. The 100% cpu is totally my fault. I messed up on that one. I was registering OP_WRITE as an interest this is not good :) checking in the working code in 15 min, some more regression tests

Re: tomcat 5.0.16 Replication

2004-01-09 Thread jean-philippe . belanger
PROTECTED] Sent: Thursday, January 08, 2004 6:43 PM To: Tomcat Users List Subject: RE: tomcat 5.0.16 Replication ok guys, good news. The 100% cpu is totally my fault. I messed up on that one. I was registering OP_WRITE as an interest this is not good :) checking in the working code in 15 min, some

RE: tomcat 5.0.16 Replication

2004-01-09 Thread Filip Hanik
I will be implementing some performance improvements today. I'll let you know how it goes -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, January 09, 2004 4:33 AM To: Tomcat Users List Subject: Re: tomcat 5.0.16 Replication Hurray for Fillip! :) I'll

RE: tomcat 5.0.16 Replication

2004-01-09 Thread Filip Hanik
useDirtyFlag=true means that session (yes the whole) only gets replicated when setAttribute and removeAttribute is called -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, January 09, 2004 10:33 AM To: Tomcat Users List Subject: Re: tomcat 5.0.16

RE: tomcat 5.0.16 Replication

2004-01-09 Thread Steve Nelson
I don't seem to need the ld_assume_kernel thing. What are the symptoms when it is required? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, January 09, 2004 12:33 PM To: Tomcat Users List Subject: Re: tomcat 5.0.16 Replication Just tried the CVS head

Re: tomcat 5.0.16 Replication

2004-01-09 Thread jean-philippe . belanger
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, January 09, 2004 10:33 AM To: Tomcat Users List Subject: Re: tomcat 5.0.16 Replication Just tried the CVS head and everything works with any CPU going crazy! only if ld_assume_kernel is set to 2.4 One more question

Re: tomcat 5.0.16 Replication

2004-01-09 Thread jean-philippe . belanger
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, January 09, 2004 12:33 PM To: Tomcat Users List Subject: Re: tomcat 5.0.16 Replication Just tried the CVS head and everything works with any CPU going crazy! only if ld_assume_kernel is set to 2.4 One more question for you

RE: tomcat 5.0.16 Replication

2004-01-09 Thread Steve Nelson
Now that's really very strange. I am running RH9 and everything seems to go through just fine. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, January 09, 2004 12:56 PM To: Tomcat Users List Subject: Re: tomcat 5.0.16 Replication The replication

RE: tomcat 5.0.16 Replication

2004-01-09 Thread Filip Hanik
interesting, mine doesn't work at all unless I set the LD_ASSUME_KERNEL what VM (version and name) are you using? Filip -Original Message- From: Steve Nelson [mailto:[EMAIL PROTECTED] Sent: Friday, January 09, 2004 10:59 AM To: 'Tomcat Users List' Subject: RE: tomcat 5.0.16 Replication

RE: tomcat 5.0.16 Replication

2004-01-09 Thread Steve Nelson
To: Tomcat Users List Subject: RE: tomcat 5.0.16 Replication interesting, mine doesn't work at all unless I set the LD_ASSUME_KERNEL what VM (version and name) are you using? Filip -Original Message- From: Steve Nelson [mailto:[EMAIL PROTECTED] Sent: Friday, January 09, 2004 10:59 AM

Re: tomcat 5.0.16 Replication

2004-01-09 Thread jean-philippe . belanger
] Sent: Friday, January 09, 2004 10:59 AM To: 'Tomcat Users List' Subject: RE: tomcat 5.0.16 Replication Now that's really very strange. I am running RH9 and everything seems to go through just fine. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, January

RE: tomcat 5.0.16 Replication

2004-01-09 Thread Filip Hanik
) -Original Message- From: Steve Nelson [mailto:[EMAIL PROTECTED] Sent: Friday, January 09, 2004 11:05 AM To: 'Tomcat Users List' Subject: RE: tomcat 5.0.16 Replication sun JDK 1.4.2 for Linux Kernel 2.4.20-8smp Tomcat 5.0.16 with catalina-cluster.jar from CVS head Hrmmmare yours

RE: tomcat 5.0.16 Replication

2004-01-09 Thread Steve Nelson
(build 1.4.2_03-b02) Java HotSpot(TM) Client VM (build 1.4.2_03-b02, mixed mode) same on both -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED] Sent: Friday, January 09, 2004 1:56 PM To: Tomcat Users List Subject: RE: tomcat 5.0.16 Replication [EMAIL PROTECTED] bin]# uname

RE: tomcat 5.0.16 Replication

2004-01-09 Thread Steve Nelson
Hrmmm, perhaps I should reboot using the non-SMP kernel and try it. I'll have to do that when I get back to the servers. -Original Message- From: Steve Nelson [mailto:[EMAIL PROTECTED] Sent: Friday, January 09, 2004 2:04 PM To: 'Tomcat Users List' Subject: RE: tomcat 5.0.16 Replication

Re: Tomcat 5.0.16 user configuration

2004-01-09 Thread Michael Post
Hello, Do you don't have any ideas or is the questian to newbie like? About an answer, i would be very pleasure. greets michael - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: tomcat 5.0.16 Replication

2004-01-08 Thread jean-philippe . belanger
. Will let you know how it goes also, try asynchronous replication, does it still go to 100%? Filip -Original Message- From: Steve Nelson [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 12:08 PM To: 'Tomcat Users List' Subject: RE: tomcat 5.0.16 Replication Okay, did that got

Re: tomcat 5.0.16 Replication

2004-01-08 Thread jean-philippe . belanger
, try asynchronous replication, does it still go to 100%? Filip -Original Message- From: Steve Nelson [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 12:08 PM To: 'Tomcat Users List' Subject: RE: tomcat 5.0.16 Replication Okay, did that got this BEGIN TO RECEIVE SENT:Default 1

RE: tomcat 5.0.16 Replication

2004-01-08 Thread Steve Nelson
] Sent: Thursday, January 08, 2004 12:25 PM To: Tomcat Users List Subject: Re: tomcat 5.0.16 Replication More content for you Filip. I've checked and followed the code of the listen event in ReplicationListener.java Here's what happening: selector.select(timeout) - return immediatly with one

Re: tomcat 5.0.16 Replication

2004-01-08 Thread jean-philippe . belanger
To: Tomcat Users List Subject: Re: tomcat 5.0.16 Replication More content for you Filip. I've checked and followed the code of the listen event in ReplicationListener.java Here's what happening: selector.select(timeout) - return immediatly with one SelectorKey available That key is not Acceptable

RE: tomcat 5.0.16 Replication

2004-01-08 Thread Filip Hanik
] [mailto:[EMAIL PROTECTED] Sent: Thursday, January 08, 2004 11:46 AM To: Tomcat Users List Subject: Re: tomcat 5.0.16 Replication The only changes in the ReplicationListener class is the try catch that was added. the code logic is the same. Weird enough. So it's probably elsewhere that something

RE: tomcat 5.0.16 Replication

2004-01-08 Thread Filip Hanik
: Thursday, January 08, 2004 2:54 PM To: Tomcat Users List Subject: RE: tomcat 5.0.16 Replication another code change was, that I am now accepting keys for OP_READ and OP_WRITE. before it was only OP_READ, but for synchronous replication I need both. this is good info, I just got RH9 installed

Re: tomcat 5.0.16 win svc CATALINA_BASE

2004-01-08 Thread Bill Barker
Maxime Colas des Francs [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, How to fix CATALINA_BASE when i use Tomcat 5.0.16 as windows service ? In JavaOptions, include -Dcatalina.home=c:\path\to\tomcat\install I attempt to configure service with procrun options (like with

RE: tomcat 5.0.16 Replication

2004-01-08 Thread Filip Hanik
Filip -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED] Sent: Thursday, January 08, 2004 6:43 PM To: Tomcat Users List Subject: RE: tomcat 5.0.16 Replication ok guys, good news. The 100% cpu is totally my fault. I messed up on that one. I was registering OP_WRITE as an interest

Re: Tomcat 5.0.16 in XP Profesional

2004-01-07 Thread epyonne
Yes, environmental variables are still necessary in XP. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, January 06, 2004 09:19 PM Subject: Tomcat 5.0.16 in XP Profesional Dear all, I have install Tomcat 5.0.16 in my XP Professional with JVM1.4_02

RE: Tomcat 5.0.16 in XP Profesional

2004-01-07 Thread Jason Roscoe
-catalina\catalina\src Can someone help me??? -Original Message- From: epyonne [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 8:56 AM To: Tomcat Users List Subject: Re: Tomcat 5.0.16 in XP Profesional Yes, environmental variables are still necessary in XP. - Original

RE: Tomcat 5.0.16 in XP Profesional

2004-01-07 Thread Rod Giffin
Jason Roscoe said: I have tried setting these environment variables up and I get the error: Exception in thread main java.lang.NoClassDefFoundError; org/apache/catalina/startup/Bootstrap. My environment variables are: JAVA_HOME: E:\j2sdk_nb\j2sdk1.4.2 CATALINA_HOME:

RE: Tomcat 5.0.16 in XP Profesional

2004-01-07 Thread Ralph Einfeldt
PM To: 'Tomcat Users List' Subject: RE: Tomcat 5.0.16 in XP Profesional JAVA_HOME: E:\j2sdk_nb\j2sdk1.4.2 CATALINA_HOME: E:\jakarta-tomcat-5.0.16-src\jakarta-tomcat-catalina\catalina\src Can someone help me

RE: Tomcat 5.0.16 in XP Profesional

2004-01-07 Thread Jason Roscoe
am not using Nebeans or Eclipse. I am just trying to start the server. -Original Message- From: Rod Giffin [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 9:36 AM To: [EMAIL PROTECTED] Subject: RE: Tomcat 5.0.16 in XP Profesional Jason Roscoe said: I have tried setting

RE: Tomcat 5.0.16 in XP Profesional

2004-01-07 Thread Jason Roscoe
\ -Original Message- From: Ralph Einfeldt [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 9:46 AM To: Tomcat Users List Subject: RE: Tomcat 5.0.16 in XP Profesional The value CATALINA_HOME doesn't sound valid. CATALINA_HOME should point to the directory that contains typically

RE: Tomcat 5.0.16 in XP Profesional

2004-01-07 Thread Rod Giffin
Jason Roscoe said: If I try any of these: CATALINA_HOME: E:\jakarta-tomcat-5.0.16-src\jakarta-tomcat-catalina\ CATALINA_HOME: E:\jakarta-tomcat-5.0.16-src CATALINA_HOME: E:\jakarta-tomcat-5.0.16-src\jakarta-tomcat-catalina\catalina I get: The CATALINA_HOME environment variable is not

RE: Tomcat 5.0.16 in XP Profesional

2004-01-07 Thread Jason Roscoe
To: [EMAIL PROTECTED] Subject: RE: Tomcat 5.0.16 in XP Profesional Jason Roscoe said: If I try any of these: CATALINA_HOME: E:\jakarta-tomcat-5.0.16-src\jakarta-tomcat-catalina\ CATALINA_HOME: E:\jakarta-tomcat-5.0.16-src CATALINA_HOME: E:\jakarta-tomcat-5.0.16-src\jakarta-tomcat-catalina\catalina

RE: Tomcat 5.0.16 in XP Profesional

2004-01-07 Thread Ralph Einfeldt
/viewcvs.cgi/jakarta-tomcat-5/RUNNING.txt?view=markup or RUNNING.txt in the download. -Original Message- From: Jason Roscoe [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 3:52 PM To: 'Tomcat Users List' Subject: RE: Tomcat 5.0.16 in XP Profesional I don't have a directory

RE: Tomcat 5.0.16 in XP Profesional

2004-01-07 Thread Mike Curwen
You have downloaded the *source* of Tomcat. You need the binary in order to actually run Tomcat. -Original Message- From: Jason Roscoe [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 8:58 AM To: 'Tomcat Users List' Subject: RE: Tomcat 5.0.16 in XP Profesional I

Re: Tomcat 5.0.16 in XP Profesional

2004-01-07 Thread epyonne
] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 08:51 AM Subject: RE: Tomcat 5.0.16 in XP Profesional I don't have a directory that has all those in it, this is Tomcat 5, not sure that makes a difference or not. The directories I have are: jakarta-tomcat-5.0.16

RE: Tomcat 5.0.16 in XP Profesional

2004-01-07 Thread Jason Roscoe
[mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 10:05 AM To: 'Tomcat Users List' Subject: RE: Tomcat 5.0.16 in XP Profesional You have downloaded the *source* of Tomcat. You need the binary in order to actually run Tomcat. -Original Message- From: Jason Roscoe [mailto

RE: tomcat 5.0.16 Replication (This is a Thread is a Duplicate Pl ease Ignore)

2004-01-07 Thread Steve Nelson

RE: tomcat 5.0.16 Replication

2004-01-07 Thread Filip Hanik
my only experience with Redhat 9 is that it doesn't play well with NIO. I have not successfully ran tomcat clustering on RH9, I use RH8. I also don't have a RH9 machine at home yet, so I can't develop for it Filip -Original Message- From: Steve Nelson [mailto:[EMAIL PROTECTED] Sent:

Re: tomcat 5.0.16 Replication

2004-01-07 Thread jean-philippe . belanger
Currently running tomcat 5.0.16 with the CVS HEAD of the replication module. This is under redhat 9. So far so good. What kind of problem did you encounter under rh9? Jean-Philippe Bélanger Filip Hanik wrote: my only experience with Redhat 9 is that it doesn't play well with NIO. I have not

RE: tomcat 5.0.16 Replication

2004-01-07 Thread Filip Hanik
: Wednesday, January 07, 2004 11:43 AM To: Tomcat Users List Subject: Re: tomcat 5.0.16 Replication Currently running tomcat 5.0.16 with the CVS HEAD of the replication module. This is under redhat 9. So far so good. What kind of problem did you encounter under rh9? Jean-Philippe Bélanger Filip

RE: tomcat 5.0.16 Replication

2004-01-07 Thread Steve Nelson
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 1:43 PM To: Tomcat Users List Subject: Re: tomcat 5.0.16 Replication Currently running tomcat 5.0.16 with the CVS HEAD of the replication module. This is under redhat 9. So far so good. What kind

Re: tomcat 5.0.16 Replication

2004-01-07 Thread jean-philippe . belanger
] Sent: Wednesday, January 07, 2004 11:43 AM To: Tomcat Users List Subject: Re: tomcat 5.0.16 Replication Currently running tomcat 5.0.16 with the CVS HEAD of the replication module. This is under redhat 9. So far so good. What kind of problem did you encounter under rh9? Jean-Philippe Bélanger Filip

RE: tomcat 5.0.16 Replication

2004-01-07 Thread Filip Hanik
100% cpu can mean that you have a multicast problem, try to run java -cp tomcat-replication.jar MCaster download the jar from http://cvs.apache.org/~fhanik/ Filip -Original Message- From: Steve Nelson [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 6:51 AM To: '[EMAIL

RE: tomcat 5.0.16 Replication

2004-01-07 Thread Steve Nelson
Hanik [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 1:58 PM To: Tomcat Users List Subject: RE: tomcat 5.0.16 Replication 100% cpu can mean that you have a multicast problem, try to run java -cp tomcat-replication.jar MCaster download the jar from http://cvs.apache.org/~fhanik

RE: Tomcat 5.0.16 in XP Profesional

2004-01-07 Thread FRANCOIS Dufour
PROTECTED] crazy-wilys webmaster From: Jason Roscoe [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: Tomcat 5.0.16 in XP Profesional Date: Wed, 7 Jan 2004 10:16:36 -0500 Ok, I downloaded the binaries, installed them and tried

RE: tomcat 5.0.16 Replication

2004-01-07 Thread Filip Hanik
Message- From: Filip Hanik [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 1:58 PM To: Tomcat Users List Subject: RE: tomcat 5.0.16 Replication 100% cpu can mean that you have a multicast problem, try to run java -cp tomcat-replication.jar MCaster download the jar from http

RE: tomcat 5.0.16 Replication

2004-01-07 Thread Steve Nelson
executable. Sounds like alot of the load may be in system calls. -Steve -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 2:47 PM To: Tomcat Users List Subject: RE: tomcat 5.0.16 Replication I'll try to get an instance going today. Will let you

RE: tomcat 5.0.16 Replication

2004-01-07 Thread Steve Nelson
the the java executable. Sounds like alot of the load may be in system calls. -Steve -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 2:47 PM To: Tomcat Users List Subject: RE: tomcat 5.0.16 Replication I'll try to get an instance going today

RE: tomcat 5.0.16 Replication

2004-01-07 Thread Steve Nelson
Nelson [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 3:03 PM To: 'Tomcat Users List' Subject: RE: tomcat 5.0.16 Replication Okay, I reverted back to the 5.0.16 version and now I don't have the high CPU ute. But it takes almost 60 seconds for the Manager to request the session

RE: tomcat 5.0.16 Replication

2004-01-07 Thread Filip Hanik
you should do export LD_ASSUME_KERNEL=2.4.1 not export set LD_ASSUME_KERNEL=2.4.1 in regular bash shell -Original Message- From: Steve Nelson [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 1:38 PM To: 'Tomcat Users List' Subject: RE: tomcat 5.0.16 Replication Heh, now

RE: tomcat 5.0.16 Replication

2004-01-07 Thread Steve Nelson
Ends up doing the same thing. The variable was set. I checked it with an echo. -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 4:05 PM To: Tomcat Users List Subject: RE: tomcat 5.0.16 Replication you should do export LD_ASSUME_KERNEL

RE: tomcat 5.0.16 Replication

2004-01-05 Thread jean-philippe . belanger
: Saturday, January 03, 2004 8:07 PM To: Tomcat Users List; [EMAIL PROTECTED] Subject: RE: tomcat 5.0.16 Replication it will come out in the next release. Filip -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 31, 2003 9:41 AM To: Tomcat-user

RE: tomcat 5.0.16 Replication

2004-01-05 Thread Filip Hanik
:[EMAIL PROTECTED] Sent: Saturday, January 03, 2004 8:07 PM To: Tomcat Users List; [EMAIL PROTECTED] Subject: RE: tomcat 5.0.16 Replication it will come out in the next release. Filip -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 31, 2003 9

Re: Tomcat 5.0.16 Server Can't Find Keystore

2004-01-04 Thread Jacob Kjome
Because the VM is being started from C:\WINDOWS\System32 since it is running as a service. If it were started from catalina.bat, then the VM would have been started from CATALINA_HOME/bin, so it would have looked there for the config directory. Why it doesn't look from in the location of

RE: tomcat 5.0.16 Replication

2004-01-03 Thread Filip Hanik
it will come out in the next release. Filip -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 31, 2003 9:41 AM To: Tomcat-user Subject: tomcat 5.0.16 Replication The new tomcat 5.0.16 replication seams to work odly. From what I've read from

Re: Tomcat 5.0.16 DBCP Connection Pool Exhausted Error

2003-12-15 Thread Kwok Peng Tuck
Hmm maybe you are not returning connections after using them ? In the tomcat docs they do give a pattern you could use in your code, like try { }catch(SQLException e) { }finally { try { //Perform your close statements here. }catch(SQLException e) { } } HIH .

Re: Tomcat 5.0.16 DBCP Connection Pool Exhausted Error

2003-12-15 Thread Philipp Taprogge
Kausik Dey wrote: Hi Guys, Currently I am using 5.0.5 in production. I was trying to upgrade to 5.0.15 or 5.0.16. I made necessary changes to server.xml to create informix DBCP. Unfortunately, I am getting Connection Pool Exhausted error while trying to obtain the connection from Datasource.

Re: Tomcat 5.0.16 DBCP Connection Pool Exhausted Error

2003-12-15 Thread Kwok Peng Tuck
Isn't removeAbandoned deprecated ? If so is it still usable ? Hmm... are you getting the error right away or only after a few requests? Hard to say anything without further information. It is always a good idea to make sure you properly close all Statements, ResultSets anc Connections

Re: Tomcat 5.0.16 DBCP Connection Pool Exhausted Error

2003-12-15 Thread Kausik Dey
: Monday, December 15, 2003 8:44 PM Subject: Re: Tomcat 5.0.16 DBCP Connection Pool Exhausted Error Isn't removeAbandoned deprecated ? If so is it still usable ? Hmm... are you getting the error right away or only after a few requests? Hard to say anything without further information

Re: Tomcat 5.0.16 DBCP Connection Pool Exhausted Error

2003-12-15 Thread Philipp Taprogge
Hi! Kwok Peng Tuck wrote: Isn't removeAbandoned deprecated ? If so is it still usable ? I can't find a word about it being deprecated on http://jakarta.apache.org/commons/dbcp/configuration.html I am using this parameter quite successfully. Phil

Re: Tomcat 5.0.16 DBCP Connection Pool Exhausted Error

2003-12-15 Thread Kwok Peng Tuck
This is where I saw it : http://jakarta.apache.org/commons/dbcp/apidocs/org/apache/commons/dbcp/AbandonedConfig.html But I think the code is still in there, just marked as deprecated :D Philipp Taprogge wrote: Hi! Kwok Peng Tuck wrote: Isn't removeAbandoned deprecated ? If so is it still

RE: tomcat 5.0.16 log4j wierd behaviour

2003-12-14 Thread Daniel
On Thu, 4 Dec 2003, Shapira, Yoav wrote: Howdy, When I deploy the webapp into /webapps/ then start tomcat, I get the error below--not when it loads my webapp--but when it loads the tomcat-docs webapp...?? So I copy the commons-logging.jar and log4j.jar into /commons/lib/ dir and the

Re: Tomcat 5.0.16 : manager-app access - solved

2003-12-12 Thread Dirk Griesbach
Hi Andy, yes, you were completely right with your assumption about the user roles. Thanks a lot greets Dirk - Original Message - From: Adam Hardy [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, December 11, 2003 10:33 PM Subject: Re: Tomcat 5.0.16 : manager-app

Re: Tomcat 5.0.16 : manager-app access

2003-12-11 Thread Adam Hardy
PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, December 10, 2003 10:17 PM Subject: Re: Tomcat 5.0.16 : manager-app access On 12/10/2003 05:49 PM Dirk Griesbach wrote: hello folks, a question on datasource realms and the manager app: When I installed TC 5.0.16 'out-of-the-box' I

Re: Tomcat 5.0.16 : manager-app access - solved

2003-12-11 Thread Adam Hardy
org.apache.catalina.realm.DataSourceRealm works different than org.apache.catalina.realm.UserDatabaseRealm regarding comma seperated roles ? grisi - Original Message - From: Dirk Griesbach [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, December 11, 2003 9:57 AM Subject: Re: Tomcat 5.0.16

Re: Tomcat 5.0.16 : manager-app access

2003-12-10 Thread Adam Hardy
On 12/10/2003 05:49 PM Dirk Griesbach wrote: hello folks, a question on datasource realms and the manager app: When I installed TC 5.0.16 'out-of-the-box' I could start the manager-app. Then I deployed our webapp (manually), configured a DataSourceRealm using mysql for authentification,

Re: tomcat-5.0.16 with jsvc exists with error

2003-12-09 Thread Marten Lehmann
The jsvc name is a Linux thing, having to do with quirks in Linux permissions. You can look through the source if you really find this interesting (it's half decently documentented there :). Jsvc works on a parent-slave model. The parent sits around to see if the slave has died, and recieves

Re: Tomcat 5.0.16 fails to compile JSP page where 4.1.18 would...

2003-12-08 Thread Remy Maucherat
Lon Palmer wrote: Hello Group! I'm trying to upgrade to tomcat 5.0.16 but I'm having some trouble with just one JSP page. The pagew will not compile and the error points to this line in the JSP: jsp:useBean id = LOG_KEEPER class=com.k4sv.web.LogKeeper scope = application / A pretty straight

RE: Tomcat 5.0.16 fails to compile JSP page where 4.1.18 would...

2003-12-08 Thread Lon Palmer
Thanks Remmy, That was it. Lon -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2003 3:38 PM To: Tomcat Users List Subject: Re: Tomcat 5.0.16 fails to compile JSP page where 4.1.18 would... Lon Palmer wrote: Hello Group! I'm trying

Re: tomcat-5.0.16 with jsvc exists with error

2003-12-08 Thread Bill Barker
Marten Lehmann [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello, I'm using tomcat-5.0.16 with jsvc to bind tomcat to port 80, but running it with a different user than root. Startup and running is fine. Shutdown (in general) also. But when tomcat (or jsvc?) exits, the

RE: [TOMCAT] 5.0.16

2003-12-05 Thread Derek Mahar
Where is your JVM installed? Is your JAVA_HOME environment variable set to this location? The Tomcat 5.0.16 Windows installation worked fine for me and had no trouble finding the JVM. Derek -Original Message- From: Schalk [mailto:[EMAIL PROTECTED] Sent: December 4, 2003 5:44 PM To:

RE: [TOMCAT] 5.0.16

2003-12-05 Thread Schalk
. Thank you. :: -Original Message- :: From: Derek Mahar [mailto:[EMAIL PROTECTED] :: Sent: Friday, December 05, 2003 4:43 PM :: To: [EMAIL PROTECTED] :: Subject: RE: [TOMCAT] 5.0.16 :: :: Where is your JVM installed? Is your JAVA_HOME environment variable set :: to this location? The Tomcat

Re: [TOMCAT] 5.0.16

2003-12-05 Thread Ben Souther
] :: Subject: RE: [TOMCAT] 5.0.16 :: :: Where is your JVM installed? Is your JAVA_HOME environment variable set :: to this location? The Tomcat 5.0.16 Windows installation worked fine :: for me and had no trouble finding the JVM. :: :: Derek :: :: -Original Message- :: From: Schalk

Re: [TOMCAT] 5.0.16

2003-12-05 Thread Remy Maucherat
Schalk wrote: Derek My JAVA_HOME points to j2sdk1.4.2/lib/tools.jar No, it should point to the base path of the JDK (ex: c:\j2sdk1.4.2). -- x Rémy Maucherat Senior Developer Consultant JBoss Group (Europe) SàRL x

RE: [TOMCAT] 5.0.16

2003-12-05 Thread Derek Mahar
Schalk: I think your JAVA_HOME is incorrect. Why does it point to j2sdk1.4.2/lib/tools.jar? My JAVA_HOME is C:\Sun\j2sdk1.4.2. Derek -Original Message- From: Schalk [mailto:[EMAIL PROTECTED] Sent: December 5, 2003 10:39 AM To: 'Tomcat Users List' Subject: RE: [TOMCAT] 5.0.16 Derek

RE: [TOMCAT] 5.0.16

2003-12-05 Thread Sullivan, Patrick
List' Subject: RE: [TOMCAT] 5.0.16 Derek My JAVA_HOME points to j2sdk1.4.2/lib/tools.jar Kind Regards Schalk Neethling Web Developer.Designer.Programmer.CEO Volume4.Development.Multimedia.Branding emotionalize.conceptualize.visualize.realize Tel: +27125468436 Fax: +27125468436 email:[EMAIL

RE: Tomcat 5.0.16 as a service

2003-12-04 Thread Mladen Turk
-Original Message- From: Mike OK, OK. I know 5.x is SUPPOSED to have this easy to use service installer, but it's not working for me. I'm using: tomcat //IS//ApacheTomcatLive --DisplayName Apache Tomcat (Live) --Description Apache Tomcat 5.0.16 - Live Instance

RE: tomcat 5.0.16 log4j wierd behaviour

2003-12-04 Thread Shapira, Yoav
Howdy, When I deploy the webapp into /webapps/ then start tomcat, I get the error below--not when it loads my webapp--but when it loads the tomcat-docs webapp...?? So I copy the commons-logging.jar and log4j.jar into /commons/lib/ dir and the problem goes away, but is that how things should be

Re: tomcat 5.0.16 log4j wierd behaviour

2003-12-04 Thread Daniel
Oops, it would help if I included the stack trace :) See below... On Thu, 4 Dec 2003, Daniel wrote: Hi everyone, I'm trying out the new tomcat 5.0.16 with a simple turbine 2.3 webapp that uses log4j. When I deploy the webapp into /webapps/ then start tomcat, I get the error below--not

  1   2   >