Re: tomcat 5.0.24 crashes silently when clustering turned on

2005-09-10 Thread Rainer Jung
Which platform/OS? I've no experience on Win, but I never experienced a tomcat crash on unix/linux. Nevertheless five comments: 0) jk2 is no longer under development. The only active connector development for apache is mod_jk and mod_proxy (for the upcoming apache 2.1/2.2). 1) If you really want

RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-08 Thread Arup Vidyerthy
like a Vector. /Arup -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: 08 September 2005 04:51 To: Tomcat Users List Subject: RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get() From: Len Popp [mailto:[EMAIL PROTECTED] Subject: Re: Tomcat/JVM hangs

Re: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-08 Thread Len Popp
On 9/7/05, Caldarale, Charles R [EMAIL PROTECTED] wrote: From: Len Popp [mailto:[EMAIL PROTECTED] Subject: Re: Tomcat/JVM hangs in session.getAttribute / HashMap.get() So if I want to *safely* call session.setAttribute or session.getAttribute I have to make sure the calls

RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-07 Thread GB Developer
coming late to the party with: http://blogs.opensymphony.com/plightbo/archives/000175.html - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-07 Thread Remy Maucherat
On 9/7/05, GB Developer [EMAIL PROTECTED] wrote: coming late to the party with: http://blogs.opensymphony.com/plightbo/archives/000175.html I had read your blog when you originally posted it, and thought it was the most interesting blog I had read in months. IMO, given the average size of the

Re: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-07 Thread Wade Chandler
--- Remy Maucherat [EMAIL PROTECTED] wrote: On 9/7/05, GB Developer [EMAIL PROTECTED] wrote: coming late to the party with: http://blogs.opensymphony.com/plightbo/archives/000175.html I had read your blog when you originally posted it, and thought it was the most interesting blog I

Re: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-07 Thread Leon Rosenberg
. September 2005 21:11 An: Tomcat Users List Betreff: Re: Tomcat/JVM hangs in session.getAttribute / HashMap.get() --- Remy Maucherat [EMAIL PROTECTED] wrote: On 9/7/05, GB Developer [EMAIL PROTECTED] wrote: coming late to the party with: http://blogs.opensymphony.com/plightbo

RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-07 Thread Caldarale, Charles R
From: Wade Chandler [mailto:[EMAIL PROTECTED] Subject: Re: Tomcat/JVM hangs in session.getAttribute / HashMap.get() so it's not just a getAttribute call or even 50 million of them alone going to cause HashMap to lock, but rather the Object being in an intermediate step when get is called

RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-07 Thread Wade Chandler
--- Caldarale, Charles R [EMAIL PROTECTED] wrote: From: Wade Chandler [mailto:[EMAIL PROTECTED] Subject: Re: Tomcat/JVM hangs in session.getAttribute / HashMap.get() so it's not just a getAttribute call or even 50 million of them alone going to cause HashMap to lock, but rather

Re: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-07 Thread Len Popp
how I can work around this. Am I missing something? Or do the Tomcat guys have to fix it? -- Len On 9/6/05, Caldarale, Charles R [EMAIL PROTECTED] wrote: From: Arup Vidyerthy [mailto:[EMAIL PROTECTED] Subject: RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get() Does this mean

RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-07 Thread Caldarale, Charles R
From: Len Popp [mailto:[EMAIL PROTECTED] Subject: Re: Tomcat/JVM hangs in session.getAttribute / HashMap.get() Inside Tomcat, references to the hashmap in question are synchronized on the hashmap object itself, StandardSession.attributes (see org.apache.catalina.session.StandardSession

RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-06 Thread Larry Isaacs
I have seen instances of a HashMap whose entries got circularly linked, I assume, due to updates which where not thread safe. Any thread using a get() on such a HashMap will spin forever chasing its tail. Cheers, Larry -Original Message- From: Leon Rosenberg [mailto:[EMAIL PROTECTED]

RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-06 Thread Leon Rosenberg
On Tue, 2005-09-06 at 08:47 -0400, Larry Isaacs wrote: I have seen instances of a HashMap whose entries got circularly linked, I assume, due to updates which where not thread safe. Any thread using a get() on such a HashMap will spin forever chasing its tail. Cheers, Larry Could be

RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-06 Thread Larry Isaacs
-Original Message- From: Leon Rosenberg [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 06, 2005 9:03 AM To: Tomcat Users List Subject: RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get() On Tue, 2005-09-06 at 08:47 -0400, Larry Isaacs wrote: I have seen instances

RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-06 Thread Leon Rosenberg
If I understand you correctly your scenario is: HashMap Entry has a linked list of X entries at one position and entry[Y] is poiting to the first entry instead of next or null? Correct. But how can that happen? a JVM / Core Api bug? The error is likely in webapp code, since the

RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-06 Thread Caldarale, Charles R
From: Leon Rosenberg [mailto:[EMAIL PROTECTED] Subject: RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get() and replace all req.getSession().setAttribute(beanName, beanValue) in code with the call to this method (same for remove) and I've solved my problem? Unfortunately, you

RE: tomcat war expansion fails on .cvsignore file

2005-09-06 Thread Arup Vidyerthy
I think you can't have that file there as the war files have to follow a certain structure. -Original Message- From: Ben Wong [mailto:[EMAIL PROTECTED] Sent: 06 September 2005 15:56 To: tomcat-user@jakarta.apache.org Subject: tomcat war expansion fails on .cvsignore file Hi, I have a

RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-06 Thread Arup Vidyerthy
regards... Arup Vidyerthy. -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: 06 September 2005 15:54 To: Tomcat Users List Subject: RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get() From: Leon Rosenberg [mailto:[EMAIL PROTECTED] Subject: RE

Re: Tomcat 5.5 classloader log4j vs JCL issue

2005-09-06 Thread Woodchuck
hihi Paul, i tried your suggestion but it still did not work. however, i finally found out why. the problem web application had the following code: try { System.setProperty(org.apache.commons.logging.Log, org.apache.commons.logging.impl.Log4JCategoryLog);

RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-06 Thread Leon Rosenberg
2005 15:54 To: Tomcat Users List Subject: RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get() From: Leon Rosenberg [mailto:[EMAIL PROTECTED] Subject: RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get() and replace all req.getSession().setAttribute(beanName, beanValue

RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-06 Thread Caldarale, Charles R
From: Arup Vidyerthy [mailto:[EMAIL PROTECTED] Subject: RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get() Does this mean that all session.setAttribute() and session.getAttribute() should always be synchronised That's the conclusion I'm reluctantly coming

RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-06 Thread Leon Rosenberg
On Tue, 2005-09-06 at 11:00 -0500, Caldarale, Charles R wrote: From: Arup Vidyerthy [mailto:[EMAIL PROTECTED] Subject: RE: Tomcat/JVM hangs in session.getAttribute / HashMap.get() Does this mean that all session.setAttribute() and session.getAttribute() should always be synchronised

Re: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-06 Thread Darryl L. Miles
It seems possible to be that one user simply pressing the reload button a few times quickly while the same page is not yet loaded can cause sync problems to his own session; and you can't control the user. Err... does anybody have a replacement class for HttpServlet ? A simple access

RE: Tomcat 5.5 classloader log4j vs JCL issue

2005-09-06 Thread Woodchuck
both Tomcat and your web apps will use separate log4j configurations. Thanks, Seva From: Paul Austin [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 31, 2005 1:30 PM To: Tomcat Users List Subject: Re: Tomcat 5.5 classloader log4j vs JCL issue

RE: Tomcat 5.5 classloader log4j vs JCL issue

2005-09-06 Thread Seva Popov
- From: Woodchuck [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 06, 2005 11:10 AM To: Tomcat Users List; Seva Popov Subject: RE: Tomcat 5.5 classloader log4j vs JCL issue hihi Seva, yes, your suggestion also works. i tried it to confirm, and it was my backup plan to do in case i couldn't

Re: Tomcat imbedded open source componets ??

2005-09-03 Thread Mark Thomas
Bovy, Stephen J wrote: Our company has a strictly controlled policy for using open source. We must get approval for each and every component on a version by version basis. Can someone give me a list or point me to a link where the list is located of all imbedded open source sub components

Re: Tomcat SSL and Virtual Domains

2005-09-03 Thread Mahesh S Kudva
I had a similar issue. I too had a doubt in servr.xml. Search the archives for the topic Virtual Hosting with WAR files. I've posted in detail what the configurations that helped me with virtual hosting. Hope it helps you too Regards Thanks Mahesh S Kudva -Original

Re: Tomcat 5.5 classloader log4j vs JCL issue

2005-09-02 Thread Paul Austin
Luc, The listener element is only valid in the Servlet 2.3 web.xml file, if using a previous servlet version use the attached servlet set to load at startup before any of the other servlets. The jar containing my classes should be included in your WEB-INF/lib directory in each web application.

RE: Tomcat 5.5 Running out of Threads

2005-09-02 Thread Bovy, Stephen J
MaxThreads Stephen Bovy Computer Associates 6100 Center Drive Suite 700 Los Angeles, CA 90045 Tel: (310) 957-3930 Fax: (310) 957-3917 e-mail: [EMAIL PROTECTED] -Original Message- From: August Detlefsen [mailto:[EMAIL PROTECTED] Sent: Friday, September 02, 2005 5:21 PM To:

RE: Tomcat 5.5 Running out of Threads

2005-09-02 Thread August Detlefsen
I have maxThreads set at 250. When a high percentage of that 250 are eaten up servicing essentially dead connections is when the server gets unresponsive. What I am interested in is how tomct can know that a thread is no longer viable -say if it has been in service mode for more than 5 minutes

RE: Tomcat imbedded open source componets ??

2005-09-02 Thread Bovy, Stephen J
Our company has a strictly controlled policy for using open source. We must get approval for each and every component on a version by version basis. Can someone give me a list or point me to a link where the list is located of all imbedded open source sub components that are used by tomcat

Re: Tomcat 5.5 where is a hard-copy dtd reference?

2005-09-01 Thread David Smith
2.4 doesn't use a DTD -- it uses a schema so order doesn't matter anymore. --David Scott Purcell wrote: Hello, Is there a quick reference, or somewhere one can go to get a listing of the element order for the 2.4 dtd? I already have a bunch of elements in my web.xml and I want to add a

Re: Tomcat 5.5 where is a hard-copy dtd reference?

2005-09-01 Thread Robert Koberg
David Smith wrote: 2.4 doesn't use a DTD -- it uses a schema so order doesn't matter anymore. Using the schema does not necessarily mean order is not important. It is just the way it was designed. One thing that is strange is that the key/keyref constraints for servlet/filter names for

Re: Tomcat Optimization and monitoring

2005-08-31 Thread Dirk Weigenand
Hi, Hi List, I want to increase the default memory usage of tomcat 5 and monitor tomcat thru JMX for memory usage for JMX - -Dcom.sun.management.jmxremote.port= -Dcom.sun.management.jmxremote.ssl=false

Re: Tomcat Optimization and monitoring

2005-08-31 Thread Nick Hindley
Create a file setenv.sh in $CATALINA_HOME/bin set your JAVA_OPTS in there. gaurav wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi List, I want to increase the default memory usage of tomcat 5 and monitor tomcat thru JMX for memory usage for JMX -

Re: Tomcat 5.5 classloader log4j vs JCL issue

2005-08-31 Thread Paul Austin
Woodchuck, The following web page describes this situation and a solution to the problem. http://www.qos.ch/logging/sc.jsp I have attached the solution that I created this week based on the information above. To compile you will need servlet-api.jar and log4j.jar to compile. Include the jar

Re: Tomcat 5.5 classloader log4j vs JCL issue

2005-08-31 Thread Wendy Smoak
From: Woodchuck [EMAIL PROTECTED] then i installed a new web app that forced me to place commons-logging.jar and log4j.jar into the ${Tomcat}/common/lib folder. as a result, all my previous per web app logging no longer works. does anyone have any suggestions on how i can have per web app

Re: Tomcat 5.5 classloader log4j vs JCL issue

2005-08-31 Thread Woodchuck
hihi Paul, thanks so much for your help! i will definitely give this a try and post my results. woodchuck --- Paul Austin [EMAIL PROTECTED] wrote: Woodchuck, The following web page describes this situation and a solution to the problem. http://www.qos.ch/logging/sc.jsp I have

RE: Tomcat 5.5 classloader log4j vs JCL issue

2005-08-31 Thread Seva Popov
Subject: Re: Tomcat 5.5 classloader log4j vs JCL issue Woodchuck, The following web page describes this situation and a solution to the problem. http://www.qos.ch/logging/sc.jsp I have attached the solution that I created this week based on the information above. To compile you will need servlet

Re: Tomcat 5.5 classloader log4j vs JCL issue

2005-08-31 Thread Woodchuck
hihi Wendy, hehe. that also crossed my mind, i wish that was an option, but i can't unfortunately.:) woodchuck --- Wendy Smoak [EMAIL PROTECTED] wrote: Is giving the uncooperative webapp its own Tomcat instance an option? That's what I'd do. I have a third-party app that insists on

RE: tomcat 5.0.28 - CPU spikes after heap memory reaches 700MB

2005-08-30 Thread Caldarale, Charles R
From: Bhaskar Mulpuri [mailto:[EMAIL PROTECTED] Subject: tomcat 5.0.28 - CPU spikes after heap memory reaches 700MB When the heap memory for the tomcat process reaches 700 Mb (as shown by solaris top command), for a few requests, the CPU spikes to 90-95 %. Is it possible that the

RE: tomcat 5.0.28 - CPU spikes after heap memory reaches 700MB

2005-08-30 Thread Bhaskar Mulpuri
The heap memory is still listed at 700 Mb when the CPU spikes up. We have also set the max memory at 2GB for the tomcat JVM process, but we see the same behavior. I have not seen any error messages in the logs either. So I have not been looking at it from the OOME perspective. Also, we checked

RE: Tomcat compileted for 64-bit Xeon machines

2005-08-25 Thread Philip Widan
I've read the posting about Tomcat just being a Java application and SUN's Java 1.5 working on a Xeon 64-bit machine (X64). However, I'm concerned about the tomcat.exe in the bin directory, and the fact that I create a Tomcat service using this exe. If it's compiled as a 32-bit Windows app, then

Re: Tomcat compileted for 64-bit Xeon machines

2005-08-25 Thread Tim Funk
The 64 bit edition has been available since the public release of tomcat including all 3.X releases. Actually - to get 64bit performance - you need to be sure your JVM by Sun/BEA/IBM is one optimized for a 64 bit machine. The JVM byte code doesn't care whether your system is 32 or 64 bit.

RE: Tomcat compileted for 64-bit Xeon machines

2005-08-25 Thread Philip Widan
List Subject: Re: Tomcat compileted for 64-bit Xeon machines The 64 bit edition has been available since the public release of tomcat including all 3.X releases. Actually - to get 64bit performance - you need to be sure your JVM by Sun/BEA/IBM is one optimized for a 64 bit machine. The JVM

RE: Tomcat compileted for 64-bit Xeon machines

2005-08-25 Thread Longson, Robert
:[EMAIL PROTECTED] Sent: 25 August 2005 11:58 To: 'Tomcat Users List' Subject: RE: Tomcat compileted for 64-bit Xeon machines I've read the posting about Tomcat just being a Java application and SUN's Java 1.5 working on a Xeon 64-bit machine (X64). However, I'm concerned about the tomcat.exe

Re: Tomcat compileted for 64-bit Xeon machines

2005-08-25 Thread Tim Funk
to where I can find the 64-bit edition, since I can't see anything specific on the Tomcat website. Or does the download include both 32-bit and 64-bit? -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: 25 August 2005 12:59 To: Tomcat Users List Subject: Re: Tomcat compileted

Re: Tomcat 5.5.9 not picking up changes

2005-08-24 Thread Rakesh Kumar
I use Tomcat 5.0.28 and as per this version, you should add reloadable=true to your context definition for the required behaviour. Rakesh Kumar, Quoting MC Moisei [EMAIL PROTECTED]: I configured Tomcat 5.5.9 for my development station. I moved from 4.1.30 where the classes where pickup on

Re: Tomcat 5.5.9 not picking up changes

2005-08-24 Thread MC Moisei
As you could see in my post I do have reloadable=true in my context file. Thanks for replying, MC From: Rakesh Kumar [EMAIL PROTECTED] Reply-To: Tomcat Users List tomcat-user@jakarta.apache.org To: tomcat-user@jakarta.apache.org Subject: Re: Tomcat 5.5.9 not picking up changes Date: Wed

Re: Tomcat 5.5.9 Cluster Error

2005-08-24 Thread SUGAHARA Toshio
Hi Peter, I resolved my problems. I appended mcastBindAddress attribute to ClusterMembership element and set 127.0.0.1 as a value. Thanks anyway. -Toshio Which OS you used and is your firewall open for UDP port 45564 and TCP 4001 ? Is your network interface enabled for Multicast

RE: Tomcat 5.5.9 missing jars ?

2005-08-24 Thread Allistair Crossley
I don't think that's shipped with Tomcat 5.5.9. What is the error you are getting? Are you running your own web applications yet or just testing the default ROOT webapp? Allistair. -Original Message- From: Srinath Narasimhan [mailto:[EMAIL PROTECTED] Sent: 24 August 2005 14:29 To:

RE: Tomcat 5.5.9 missing jars ?

2005-08-24 Thread Srinath Narasimhan
common/lib folder. Now if these jars are not shipped with Tomcat, how does the default java namespace in the JNDI work ? Srinath. -Original Message- From: Allistair Crossley [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 24, 2005 9:29 AM To: Tomcat Users List Subject: RE: Tomcat 5.5.9

RE: Tomcat 5.5.9 missing jars ?

2005-08-24 Thread Allistair Crossley
- From: Srinath Narasimhan [mailto:[EMAIL PROTECTED] Sent: 24 August 2005 14:37 To: Tomcat Users List Subject: RE: Tomcat 5.5.9 missing jars ? Thanks Allistair for the information, I am running my own web application and it is already working in 5.0.28 When I try to run it under 5.5.9

RE: Tomcat 5.5.9 missing jars ?

2005-08-24 Thread Srinath Narasimhan
Subject: RE: Tomcat 5.5.9 missing jars ? Hi, It looks like you are another developer who thinks the transition from 5.0.x to 5.5.x is just copying your webapp across. Unfortunalte you'll need to configure JNDI datasources in a different way in 5.5.x. Check out the manual pages to see how. Allistair

RE: Tomcat 3.3.2: Not able to retrieve parameters

2005-08-23 Thread Larry Isaacs
A simple test works for me. Are you accessing Tomcat 3.3.2 directly or through another web server? Larry -Original Message- From: Code Rebel [mailto:[EMAIL PROTECTED] Sent: Monday, August 22, 2005 8:39 PM To: tomcat-user@jakarta.apache.org Subject: Tomcat 3.3.2: Not able to

Re: tomcat 5.5.9 not recompiling JSPs

2005-08-22 Thread Sean Rowe
I saw this just today. I did some digging and realized that my application context file, usually found under $ CATALNA_HOME/conf/Catalina/localhost was messed up. After I fixed whatever problem it was, I was able to deploy again. Michal Kwiatek wrote: Hello, I have a problem with tomcat

RE: tomcat 5.5.9 not recompiling JSPs

2005-08-22 Thread Michal Kwiatek
: Sean Rowe [mailto:[EMAIL PROTECTED] Sent: Monday, August 22, 2005 8:32 AM To: Tomcat Users List Subject: Re: tomcat 5.5.9 not recompiling JSPs I saw this just today. I did some digging and realized that my application context file, usually found under $ CATALNA_HOME/conf/Catalina

Re: Tomcat 5.5.9 Cluster Error

2005-08-22 Thread SUGAHARA Toshio
Hi Peter, I'm using Windows XP SP1 and not enable Firewall. Also I can use Multicast. I was able to set-up Tomcat Cluster with 5.0.16, but I failed with 5.5.9 and 5.0.28. On only uncommenting the Cluster and Value element in server.xml, I succeeded to set-up with 5.0.16. But with 5.5.9 and

RE: Tomcat 5.5.7+JRockit = windows service won't start

2005-08-22 Thread Longson, Robert
You need to build prunsrv.exe, then rename it to replace tomcat5.exe. Robert -Original Message- From: Brad Baynes [mailto:[EMAIL PROTECTED] Sent: 19 August 2005 18:05 To: 'Tomcat Users List' Subject: RE: Tomcat 5.5.7+JRockit = windows service won't start I'm a little fuzzy

Re: tomcat 5.5.9 not recompiling JSPs

2005-08-22 Thread Mark Hagger
I had a similar problem, I wouldn't go so far as to say I have a solution, but fiddling with the tomcat/conf/web.xml file to have the following in its jsp section seemed to help a bit (currently used for our demo level systems): servlet servlet-namejsp/servlet-name

Re: tomcat 5.5.9 not recompiling JSPs

2005-08-22 Thread Paul Singleton
Mark Hagger wrote: ... Although to be honest I suspect that the best solution for production boxes is to pre-compile all jsps into the war file anyway. Is this possible? Don't different containers store the compiled pages in different places, with different names? Paul Singleton -- No

RE: tomcat 5.5.9 not recompiling JSPs

2005-08-22 Thread Allistair Crossley
compiled pages are just classes, and so long as they are mapped correctly in the web.xml you'll be ok. -Original Message- From: Paul Singleton [mailto:[EMAIL PROTECTED] Sent: 22 August 2005 15:13 To: Tomcat Users List Cc: [EMAIL PROTECTED] Subject: Re: tomcat 5.5.9 not recompiling

RE: tomcat 5.5.9 not recompiling JSPs

2005-08-22 Thread Michal Kwiatek
] Sent: Monday, August 22, 2005 3:21 PM To: Tomcat Users List Subject: Re: tomcat 5.5.9 not recompiling JSPs I had a similar problem, I wouldn't go so far as to say I have a solution, but fiddling with the tomcat/conf/web.xml file to have the following in its jsp section seemed to help a bit

RE: Tomcat 5.5.7+JRockit = windows service won't start

2005-08-22 Thread Brad Baynes
AM To: Tomcat Users List Subject: RE: Tomcat 5.5.7+JRockit = windows service won't start You need to build prunsrv.exe, then rename it to replace tomcat5.exe. Robert -Original Message- From: Brad Baynes [mailto:[EMAIL PROTECTED] Sent: 19 August 2005 18:05 To: 'Tomcat Users List' Subject

RE: Tomcat 5.5.7+JRockit = windows service won't start

2005-08-19 Thread Longson, Robert
The current CVS version of commons-daemon works for me with the jvm.dll from BEA Weblogic 8.1. I ran a test java service rather than tomcat but I expect the result would be the same with tomcat. The current CVS commons-daemon has had the -Xrs code removed by revision 190890. Robert

Re: Tomcat 5.5.9 Cluster Error

2005-08-19 Thread SUGAHARA Toshio
Sorry, attached file was not sent and I'll try again. [error message] ERROR main org.apache.catalina.cluster.tcp.SimpleTcpCluster - Unable to start cluster. java.net.SocketException: error setting options at java.net.PlainDatagramSocketImpl.join(Native Method) at

Re: Tomcat 5.5.9 Cluster Error

2005-08-19 Thread Peter Rossbach
Which OS you used and is your firewall open for UDP port 45564 and TCP 4001 ? Is your network interface enabled for Multicast Packages ? Why you used the deployer ? Peter SUGAHARA Toshio schrieb: Sorry, attached file was not sent and I'll try again. [error message] ERROR main

Re: Tomcat authentication with Kerberos

2005-08-19 Thread Wendy Smoak
From: Wendy Smoak [EMAIL PROTECTED] I have a standalone Tomcat 5.0 instance, and a third-party webapp that has support for authentication via LDAP. Of course, we don't have LDAP, we have Kerberos. It should be a simple matter to plug in a different Realm, right? Replying to myself for the

RE: Tomcat 5.5.7+JRockit = windows service won't start

2005-08-19 Thread Brad Baynes
List (E-mail) Subject: RE: Tomcat 5.5.7+JRockit = windows service won't start The current CVS version of commons-daemon works for me with the jvm.dll from BEA Weblogic 8.1. I ran a test java service rather than tomcat but I expect the result would be the same with tomcat. The current CVS commons

RE: Tomcat 5.5.9 with Struts 1.2.7 - ClassCastException - looks like a Tomcat bug

2005-08-18 Thread stewart.cambridge
: Christian Dionne [mailto:[EMAIL PROTECTED] Sent: 17 August 2005 14:14 To: 'Struts Users Mailing List' Subject: RE: Tomcat 5.5.9 with Struts 1.2.7 - ClassCastException - looks like a Tomcat bug Hi Stewart, I had the same problem and I received a great answer on this mailing list a few days ago

RE: tomcat 4.1.31

2005-08-18 Thread Arup Vidyerthy
Looks like your server.xml syntax is not correct. You will need to look through it figure it out... -Original Message- From: Kuruganti, Lakshmi, ALABS [mailto:[EMAIL PROTECTED] Sent: 18 August 2005 14:03 To: tomcat-user@jakarta.apache.org Subject: tomcat 4.1.31 Hi, I am new to

RE: Tomcat 5.5.7+JRockit = windows service won't start

2005-08-18 Thread Brad Baynes
I have verified the jvm path listed above is correct and that the jvm is indeed the latest JRockit release. Brad From: Brad Baynes [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 4:48 PM To: tomcat-user@jakarta.apache.org Subject: Re: FW: RE: Tomcat 5.5.7+JRockit = windows service

RE: Tomcat 5.5.7+JRockit = windows service won't start

2005-08-18 Thread Wade Chandler
] Sent: Wednesday, March 23, 2005 4:48 PM To: tomcat-user@jakarta.apache.org Subject: Re: FW: RE: Tomcat 5.5.7+JRockit = windows service won't start No, the -Xrs is not available in the registry using the tomcat5 with 5.5.7 (or any version since 5.0.22 it seems). In the related

Re: Tomcat 5.5.9: Resource not found

2005-08-17 Thread Litty Preeth
Hi Deepak, I had same problem with servlets. That can be resolved by adding servlet and servlet-mapping elements to the web.xml file. But i never faced a problem with the jsp or static content files. With Regards Litty Preeth --- Deepak Joshi [EMAIL PROTECTED] wrote: Hi, I have setup

RE: Tomcat 5.5.9: Resource not found

2005-08-17 Thread Sharma, Tripurari
You need to configure the server.xml and web.xml file Under conf folder -Original Message- From: Litty Preeth [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 17, 2005 6:26 AM To: Tomcat Users List Subject: Re: Tomcat 5.5.9: Resource not found Hi Deepak, I had same problem

Re: Tomcat 5.5.9: Resource not found

2005-08-17 Thread Litty Preeth
Deepak , I forgot to tell smthing. U wont be able to access the resources directly if u r puttng them in the WEB-INF dir. But u wud be able to access them if u r putting them directly under ur appln dir. --- Litty Preeth [EMAIL PROTECTED] wrote: Hi Deepak, I had same problem with

RE: TomCat 5.5.9 - 8443

2005-08-17 Thread Tom Spence
Message- From: Tom Spence [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 16, 2005 9:23 AM To: Tomcat Users List Subject: Re: TomCat 5.5.9 - 8443 Can I use ikeyman or keytool or both? Cuz, I need to use SSL like 8443 so bad... Paul Kimbrel wrote: Something I forgot to mention. When you

RE: TomCat 5.5.9 - 8443

2005-08-17 Thread Paul Kimbrel
: Tuesday, August 16, 2005 9:23 AM To: Tomcat Users List Subject: Re: TomCat 5.5.9 - 8443 Can I use ikeyman or keytool or both? Cuz, I need to use SSL like 8443 so bad... Paul Kimbrel wrote: Something I forgot to mention. When you are generating your certificate, it will ask for your first and last

Re: TomCat 5.5.9 - 8443

2005-08-16 Thread Tom Spence
Can I use ikeyman or keytool or both? Cuz, I need to use SSL like 8443 so bad... Paul Kimbrel [EMAIL PROTECTED] wrote: Something I forgot to mention. When you are generating your certificate, it will ask for your first and last name. Enter the name of the server your appliation will be running

RE: TomCat 5.5.9 - 8443

2005-08-16 Thread Paul Kimbrel
I've only used keytool - and it worked like a charm for me. -Original Message- From: Tom Spence [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 16, 2005 9:23 AM To: Tomcat Users List Subject: Re: TomCat 5.5.9 - 8443 Can I use ikeyman or keytool or both? Cuz, I need to use SSL like

Re: TomCat 5.5.9 - 8443

2005-08-15 Thread Paul Singleton
Tom Spence wrote: I can open http://localhost:8080 but, can't open https://localhost:8443 Any idea why? Of course I did uncomment at 8443 area in server.xml and set up by using keytool. Nothing happened. What kind of nothing? Connection refused? Failed to connect after timeout? Page

Re: TomCat 5.5.9 - 8443

2005-08-15 Thread Tom Spence
Here what I got... Aug 15, 2005 8:38:24 AM org.apache.coyote.http11.Http11Protocol init INFO: Initializing Coyote HTTP/1.1 on http-8080 Aug 15, 2005 8:38:24 AM org.apache.coyote.http11.Http11Protocol init INFO: Initializing Coyote HTTP/1.1 on http-8443 Aug 15, 2005 8:38:24 AM

Re: TomCat 5.5.9 - 8443

2005-08-15 Thread pklist1
It sounds like you need to set up an SSL certificate for Java. Here's a site that outlines how to do this: http://jasigch.princeton.edu:9000/display/CAS/Solving+SSL+issues To use this example, make sure you have your JAVA_HOME environment variable set properly (or replace it in the example with

Re: TomCat 5.5.9 - 8443

2005-08-15 Thread Paul Kimbrel
Something I forgot to mention. When you are generating your certificate, it will ask for your first and last name. Enter the name of the server your appliation will be running on. In the case of development - this is usally localhost. Otherwise, the certificate will be rejected when your

RE: tomcat connect to IIs - Upload problem

2005-08-15 Thread Allistair Crossley
Hi, What is the error that you receive when uploading 50kb? I know there was previously a bug with earlier versions of the now unsupported JK2 connector. If that's what you are using then you should upgrade to the latest JK 1.2.x connector. Allistair. -Original Message-

Re: tomcat 5.0.19 randomly stops taking http requests

2005-08-15 Thread Josh Wilson
I am seeing some thing very similar with tomcat 5.0.25. I have 2 connectors configured and one will mysterious stop handling requests in the same way you mentioned below. Any help would be greatly appreciated. On 8/15/05, Tim Lam [EMAIL PROTECTED] wrote: Tomcat 5.0.19 is actually still

RE: Tomcat and the HttpServletRequest Object

2005-08-13 Thread Jeff Grangier
- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Friday, August 12, 2005 7:48 PM To: Tomcat Users List Subject: Re: Tomcat and the HttpServletRequest Object From: Hassan Schroeder [EMAIL PROTECTED] :snips from: http://www.w3.org/TR/html401/interact/forms.html#h-17.13 So it seems the HTML

Re: Tomcat and the HttpServletRequest Object

2005-08-13 Thread Mark Thomas
Jeff Grangier wrote: Would anyone in the Project Management Committee, Advisory board, or the committer group acknowledge that this bug is understood and will be considered in the next releases of Tomcat? The issue is understood. This is not a bug, since there is no spec violation. Given the

Re: Tomcat and the HttpServletRequest Object

2005-08-13 Thread Rob Hunt
Jeff, You still haven't given a rationale why you *need* the parameters presented in a specific order (even though the brower's supposed to produce that result). I've worked with a set of generic form processing servlets and never had the desperate need to know the order upon receipt; if I'm

RE: Tomcat 5.5 upgrade + logging problems

2005-08-12 Thread Allistair Crossley
Really, this has been discussed to death on this mailing list. The 5.5 logging page for a start gives you instructions for setting logging up. Also, I have a blog at www.adcworks.com/blog that touches on 5.5 configuration and logging. Allistair. -Original Message- From: Robert Abbate

RE: Tomcat W3C Access Log

2005-08-12 Thread Allistair Crossley
Hi, Just use the Access Log Value with the pattern you need. You can see the built-in patterns or define your own one. Check out the docs http://jakarta.apache.org/tomcat/tomcat-5.5-doc/config/valve.html Cheers, Allistair. -Original Message- From: news [mailto:[EMAIL PROTECTED]

Re: Tomcat W3C Access Log

2005-08-12 Thread Tim Funk
See ... http://jakarta.apache.org/tomcat/tomcat-4.1-doc/catalina/docs/api/org/apache/catalina/valves/ExtendedAccessLogValve.html Valve className=org.apache.catalina.valves.ExtendedAccessLogValve directory=logs pattern='c-ip cs-method cs-uri sc-status time'

RE: Tomcat 5.5 upgrade + logging problems

2005-08-12 Thread Allistair Crossley
: Robert Abbate [mailto:[EMAIL PROTECTED] Sent: 12 August 2005 01:37 To: Allistair Crossley Subject: RE: Tomcat 5.5 upgrade + logging problems I appreciate your response, but I can assure you there are many out there which are not able to get this going EVEN after following the scant

RE: Tomcat 5.5 upgrade + logging problems

2005-08-12 Thread Allistair Crossley
within the web application itself which is another example. -- end -- -Original Message- From: Allistair Crossley Sent: 12 August 2005 13:57 To: tomcat-user@jakarta.apache.org Cc: Robert Abbate Subject: RE: Tomcat 5.5 upgrade + logging problems Hi Robert, The fact

RE: Tomcat and the HttpServletRequest Object

2005-08-12 Thread George Sexton
I see nothing in the specification that specifies the order of the elements returned in the enumeration. Why do you think this is a bug? George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Jeff Grangier [mailto:[EMAIL PROTECTED]

RE: Tomcat and the HttpServletRequest Object

2005-08-12 Thread Jeff Grangier
in this upgrade? Thanks, Jeff -Original Message- From: George Sexton [mailto:[EMAIL PROTECTED] Sent: Friday, August 12, 2005 12:40 PM To: 'Tomcat Users List' Subject: RE: Tomcat and the HttpServletRequest Object I see nothing in the specification that specifies the order of the elements

RE: Tomcat and the HttpServletRequest Object

2005-08-12 Thread George Sexton
' Subject: RE: Tomcat and the HttpServletRequest Object Hello George, I will consider it an ehancement if it is not in the specification. Adding a logical order to the list makes it much easier to manage dynamically. Otherwize, any programmer will have to create their own proprietary indexing

Re: Tomcat and the HttpServletRequest Object

2005-08-12 Thread Wendy Smoak
From: Jeff Grangier [EMAIL PROTECTED] Each Element out the getParameterNames enumeration used to be ordered based on the html form layout posting the data (using iPLanet). But, after the migration the fields are coming in random order when I try to loop through the fields dynamically. . .

RE: Tomcat and the HttpServletRequest Object

2005-08-12 Thread Jeff Grangier
: George Sexton [mailto:[EMAIL PROTECTED] Sent: Friday, August 12, 2005 1:46 PM To: 'Tomcat Users List' Subject: RE: Tomcat and the HttpServletRequest Object Even if I were to write this as an enhancement, I can tell you from past experience it would be rejected out of hand by the committers

Re: Tomcat and the HttpServletRequest Object

2005-08-12 Thread Bhupinder Dhillon
I have the same bloody problem. The application is a generic form handler that e-mails the form values. Most (all) of the clients expect the values to be in the same order as the form itself. I question the requirement to improve performance on request parameters. Vast majority of the

<    1   2   3   4   5   6   7   8   9   10   >