RE: How do I programmatically find the DocBase of my webapp?

2004-09-03 Thread Jay Glanville
Thanks Yoav. In my defense, I did perform a search. However, NOT in my defense, my search was a little week: do you know how many hits you get when searching the archives for 'docbase'? Not a good word to limit by. ;-) -- Jay Glanville Software Engineer -Original Message- From

RE: What version of tomcat am I using?

2004-05-06 Thread Jay Glanville
a script _outside_ of tomcat. My script is an upgrade script, and thus probably isn't going to be executed from within the web application. Thanks for the attempt though. JDG -- Jay Glanville -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 11

RE: What version of tomcat am I using?

2004-05-06 Thread Jay Glanville
-- Jay Glanville - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: quick question concerning the Client Deployer Package

2004-01-27 Thread Jay Glanville
Thanks -- Jay Glanville -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 27, 2004 9:11 AM To: Tomcat Users List Subject: Re: quick question concerning the Client Deployer Package Glanville, Jay wrote: Hello all. I have a quick

RE: How to find the differences between versions?

2004-01-15 Thread Jay Glanville
On Wed, January 14, 2004 at 1:29 pm, Glanville, Jay wrote: What is the best way that I can find all the issues that were resolved in between 4.1.12 and 4.1.29? Basically, my manager wants to know if we should upgrade to 4.1.29, and he wants to see a list of all the issues that

Problems running pre-compiled JSP classes when in subdirectories

2004-01-07 Thread Jay Glanville
my application. With the non-servlet approach, I just simply deliver the modified JSP files. With the servlet approach, I need to deliver the classes, plus ensure that the web.xml is correct (add new entries, remove old ones, modify where needed), plus restart the context. -- Jay Glanville

RE: Problems running pre-compiled JSP classes when in subdirectories

2004-01-07 Thread Jay Glanville
(PoolTcpEndpoint.java:58 9) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool .java:666) at java.lang.Thread.run(Thread.java:534) -- Jay Glanville -Original Message- From: Edson Alves Pereira [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 9:43 AM

RE: Problems running pre-compiled JSP classes when in subdirectories

2004-01-07 Thread Jay Glanville
Thanks Edson. I'll try that later this week. JDG -- Jay Glanville -Original Message- From: Edson Alves Pereira [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 12:00 PM To: 'Tomcat Users List' Subject: RE: Problems running pre-compiled JSP classes when

RE: can tomcat give me page loadtime stats?

2003-10-09 Thread Jay Glanville
Good. Thanks. Now, a little help is requested in how to use AccessLogValue. (and now that I read the first answer, I realize that I might not have phrased my question as unambiguously as possible). I'd like to have the following information logged: page x took y milliseconds to create (or

RE: can tomcat give me page loadtime stats?

2003-10-09 Thread Jay Glanville
, in millis %T - Time taken to process the request, in seconds -Tim Jay Glanville wrote: Good. Thanks. Now, a little help is requested in how to use AccessLogValue. (and now that I read the first answer, I realize that I might not have phrased my question as unambiguously

RE: [OFF-TOPIC] Ant property file...

2003-10-09 Thread Jay Glanville
You have things in the wrong order: ant doesn't over-ride in a later format. The first time a variable is defined, that's when it's set. For example: property name=name value=john / property name=name value=scott / ... echo message=${name} / Will print out john. Therefore, in your example, all