Re: cvs commit: jakarta-tomcat-catalina/catalina build.xml

2002-08-15 Thread Bill Barker
I agree with Steve. A full.dist=true build should fail if !jta.present. - Original Message - From: Steve Downey [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Sent: Wednesday, August 14, 2002 9:05 PM Subject: Re: cvs commit: jakarta-tomcat-catalina/catalina build.xml

DO NOT REPLY [Bug 11191] - Error while runing an app using a JDBC connection configured as JNDI resource

2002-08-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11191. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_uriEnv.h

2002-08-15 Thread mturk
mturk 2002/08/15 02:21:50 Modified:jk/native2/include jk_uriEnv.h Log: Add the reverse mapping flag to the uriEnv Revision ChangesPath 1.16 +5 -0 jakarta-tomcat-connectors/jk/native2/include/jk_uriEnv.h Index: jk_uriEnv.h

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_uriMap.h

2002-08-15 Thread mturk
mturk 2002/08/15 02:22:16 Modified:jk/native2/include jk_uriMap.h Log: Add the reverse mapping flag to the mapUri call Revision ChangesPath 1.14 +1 -1 jakarta-tomcat-connectors/jk/native2/include/jk_uriMap.h Index: jk_uriMap.h

cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_uriEnv.c

2002-08-15 Thread mturk
mturk 2002/08/15 02:24:03 Modified:jk/native2/common jk_uriEnv.c Log: Add the reverse mapping option to the uri meaning that the mapping will be 'reversed' or NOT mapped if the actuall mapping is acomplished. Revision ChangesPath 1.25 +2 -0

cvs commit: jakarta-tomcat-connectors/jk/native2/common jk_uriMap.c

2002-08-15 Thread mturk
mturk 2002/08/15 02:25:18 Modified:jk/native2/common jk_uriMap.c Log: Check each mapping with the reverse flag and desired mode. Mode can be either normal or reverse. Revision ChangesPath 1.36 +32 -14jakarta-tomcat-connectors/jk/native2/common/jk_uriMap.c

cvs commit: jakarta-tomcat-connectors/jk/native2/server/apache2 mod_jk2.c

2002-08-15 Thread mturk
mturk 2002/08/15 02:27:18 Modified:jk/native2/server/apache2 mod_jk2.c Log: After succesfull call to the mapUri call the mapUri again with the reverse flag set. This will decline the 'reverse' mappings. Revision ChangesPath 1.48 +9 -3

cvs commit: jakarta-tomcat-connectors/jk/native2/server/apache13 mod_jk2.c

2002-08-15 Thread mturk
mturk 2002/08/15 02:27:41 Modified:jk/native2/server/apache13 mod_jk2.c Log: After succesfull call to the mapUri call the mapUri again with the reverse flag set. This will decline the 'reverse' mappings. Revision ChangesPath 1.17 +9 -2

cvs commit: jakarta-tomcat-connectors/jk/native2/server/isapi jk_isapi_plugin.c

2002-08-15 Thread mturk
mturk 2002/08/15 02:28:42 Modified:jk/native2/server/isapi jk_isapi_plugin.c Log: Fix the call to the mapUri. The IIS doesn't support the reverse mappings for now. Revision ChangesPath 1.41 +3 -3

[COMMENT] mod_jk2 reverse mappings

2002-08-15 Thread Mladen Turk
Hi, Some comments regarding reverse uri mappings. This is the simplest way of accomplishing the reverse mapping (I'm not sure if this is correct terminology). There is additional option for the uri map configuration 'reverse' : [uri:/examples/*.gif] info=Extension mapping reverse=1 All the

DO NOT REPLY [Bug 7554] - AccessLogValve doesn't implement %{Referer}i and %{User-Agent}i

2002-08-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7554. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 11075] - [PATCH] AccessLogValue Request Header ${xxx}i support

2002-08-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11075. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Custom DataSource Factory

2002-08-15 Thread teletype
Hi, I'd like replace javax.sql.DataSource factory with an implementation that fit my needs. Actually it is based on BasicDataSourceFactory from DBCP with some improvements. It allows overriding of server.xml resource parameters using the Hashtable passed to the InitialContext. So I've

Re: [COMMENT] mod_jk2 reverse mappings

2002-08-15 Thread Bojan Smojver
Neat :-) Bojan On Thu, 2002-08-15 at 19:43, Mladen Turk wrote: Hi, Some comments regarding reverse uri mappings. This is the simplest way of accomplishing the reverse mapping (I'm not sure if this is correct terminology). There is additional option for the uri map configuration

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_uriMap.h

2002-08-15 Thread mturk
mturk 2002/08/15 04:21:47 Modified:jk/native2/include jk_uriMap.h Log: Remove the reverse flag from uriMap call. Revision ChangesPath 1.15 +2 -1 jakarta-tomcat-connectors/jk/native2/include/jk_uriMap.h Index: jk_uriMap.h

cvs commit: jakarta-tomcat-connectors/jk/native2/server/apache13 mod_jk2.c

2002-08-15 Thread mturk
mturk 2002/08/15 04:22:41 Modified:jk/native2/server/apache13 mod_jk2.c Log: Remove the reverse flag from uriMap call. All the positive/negative mappings is now done inside the uriMap function itself. Revision ChangesPath 1.18 +1 -8

cvs commit: jakarta-tomcat-connectors/jk/native2/server/apache2 mod_jk2.c

2002-08-15 Thread mturk
mturk 2002/08/15 04:23:04 Modified:jk/native2/server/apache2 mod_jk2.c Log: Remove the reverse flag from uriMap call. All the positive/negative mappings is now done inside the uriMap function itself. Revision ChangesPath 1.49 +1 -8

cvs commit: jakarta-tomcat-connectors/jk/native2/server/isapi jk_isapi_plugin.c

2002-08-15 Thread mturk
mturk 2002/08/15 04:23:30 Modified:jk/native2/server/isapi jk_isapi_plugin.c Log: Remove the reverse flag from uriMap call. All the positive/negative mappings is now done inside the uriMap function itself. Revision ChangesPath 1.42 +2 -2

Re: cvs commit: jakarta-tomcat-catalina/catalina build.xml

2002-08-15 Thread Bob Herrmann
On Thu, 2002-08-15 at 00:05, Steve Downey wrote: (jta.present == true) and (full.dist=true or tyrex.present) Yea, your right. I will change that to, (full.dist==true) or ( jta.present == true and tyrex.present) Does that sound ok? Cheers, -bob If I'm reading this correctly, this won't

Re: cvs commit: jakarta-tomcat-catalina/catalina build.xml

2002-08-15 Thread Remy Maucherat
Bob Herrmann wrote: On Thu, 2002-08-15 at 00:05, Steve Downey wrote: (jta.present == true) and (full.dist=true or tyrex.present) Yea, your right. I will change that to, (full.dist==true) or ( jta.present == true and tyrex.present) Does that sound ok? Yes. Actually, there are a few

Re: Absolute fields required for JDBC JNDI Realm pages in adminwebapp

2002-08-15 Thread John Holman
Amy Yes - much too strict for JNDIRealm! The only configuration attributes that should always be specified for this realm are className and connectionURL. In addition either userPattern or userSearch must be specified (but not both). Other attributes either have default values, or not

[ANNOUNCEMENT] Tomcat 4.1.9 Beta

2002-08-15 Thread Remy Maucherat
Tomcat 4.1.9 Beta has been released. It includes bugfixes over the previous Tomcat 4.1.8 Beta, including a fix for a rare deadlock condition in the Catalina classloader, and Jasper 2 compliance fixes (please refer to the release notes for the complete list). Release notes:

DO NOT REPLY [Bug 11075] - [PATCH] AccessLogValue Request Header ${xxx}i support

2002-08-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11075. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 11722] New: - There is no build.properties.sample file.

2002-08-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11722. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-catalina/catalina build.xml

2002-08-15 Thread bobh
bobh2002/08/15 06:56:31 Modified:catalina build.xml Log: Change conditional building of Tyrex component to follow this rule, (full.dist==true) or ( jta.present == true and tyrex.present) Revision ChangesPath 1.17 +7 -7

DO NOT REPLY [Bug 11724] New: - ant install fails - no such target

2002-08-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11724. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 11075] - [PATCH] AccessLogValue Request Header ${xxx}i support

2002-08-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11075. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

JspC / jspc.bat

2002-08-15 Thread John Trollinger
In trying to use JspC I have noticed that it does not create the .java files the same way Jasper does when going to the page in a browser. I am trying to change this so that they both work the same way (and use as much of the same code as possible for obvious reasons), is anyone else working on

DO NOT REPLY [Bug 11730] New: - build fails - can't find jni_md.h

2002-08-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11730. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

RE: [4.1.9] Fix for major bugs

2002-08-15 Thread David Oxley
Has anyone looked at http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7082. Can anyone look at fixing this for 4.1.x? Cheers. Dave. -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED]] Sent: 09 August 2002 11:10 To: Tomcat Developers List Subject: [4.1.9] Fix for

DO NOT REPLY [Bug 11662] - GlobalResources unavailable in DefaultContext

2002-08-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11662. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: [4.1.9] Fix for major bugs

2002-08-15 Thread Remy Maucherat
David Oxley wrote: Has anyone looked at http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7082. Can anyone look at fixing this for 4.1.x? It may not be that easy to fix, but at least I undestand now why so many people reported problems with RMI. The bug has an easy workaround, and I don't

Re: [5][PATCH]Run Watchdog from the jakarta-tomcat-5 build.xml

2002-08-15 Thread Patrick Luby
Costin, [EMAIL PROTECTED] wrote: Patrick ( if you read this ) - what's the status with the 'guess home' ? I can use IntrospectionUtils - it has the whole thing in it ( home/base setting, find in classpath ). We already need IU for jk - it just needs to be included in bootstrap.jar to do

[5.0] [PROPOSAL] Refactored mapper

2002-08-15 Thread Remy Maucherat
Hi, I have been hinting at rewriting the main Catalina mapper for Tomcat 5. The proposal is designed to improve performance, avoid generating uneeded garbage String objects, and optimize the welcome files processing. The following changes are proposed: - Expose the decoded URI MessageBytes in

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/authenticator AuthenticatorBase.java

2002-08-15 Thread remm
remm2002/08/15 10:42:57 Modified:catalina/src/share/org/apache/catalina/authenticator AuthenticatorBase.java Log: - Remove double URI decoding. - This could improve performance as well as fix i18n issues. - This may have been a security issue. -

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/realm RealmBase.java

2002-08-15 Thread remm
remm2002/08/15 10:47:04 Modified:catalina/src/share/org/apache/catalina/realm RealmBase.java Log: - Remove double URI decoding. - This could improve performance as well as fix i18n issues. - This may have been a security issue. - Reported by Juergen Pill Juergen.Pill at

[5.0] [PROPOSAL] Validation/NamespaceAware

2002-08-15 Thread Jean-francois Arcand
Hi, based on the mailling list feedback, I would like to propose the following solution for the XML Parser DTD/Schema validation/namespace aware problems: - Add the following attributes in server.xml under the HOST element: xmlValidation=false xmlNamespaceAware=false and set them equal to

Re: [5.0] [PROPOSAL] Validation/NamespaceAware

2002-08-15 Thread Patrick Luby
Jean-François, I would vote +1 as long as these two HOST attributes are optional attributes. In other words, if they are missing from server.xml, both default to false. I think that is what you are proposing but I just wanted to make sure. Patrick Jean-francois Arcand wrote: Hi, based on

Re: [5.0] [PROPOSAL] Refactored mapper

2002-08-15 Thread Remy Maucherat
Bob Herrmann wrote: On Thu, 2002-08-15 at 13:23, Remy Maucherat wrote: Hi, I have been hinting at rewriting the main Catalina mapper for Tomcat 5. The proposal is designed to improve performance, avoid generating uneeded garbage String objects, and optimize the welcome files processing.

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/valvesErrorDispatcherValve.java

2002-08-15 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: patrickl2002/08/15 12:11:31 Modified:catalina/src/share/org/apache/catalina/valves ErrorDispatcherValve.java Log: If a Servlet generates a RuntimeException, it is wrapped by a ServletException. Since there is an entry for

Re: [5.0] [PROPOSAL] Validation/NamespaceAware

2002-08-15 Thread Remy Maucherat
Jean-francois Arcand wrote: Hi, based on the mailling list feedback, I would like to propose the following solution for the XML Parser DTD/Schema validation/namespace aware problems: - Add the following attributes in server.xml under the HOST element: xmlValidation=false

Re: [5.0] [PROPOSAL] Refactored mapper

2002-08-15 Thread costinm
On Thu, 15 Aug 2002, Remy Maucherat wrote: Yes, but welcome files for non physical resources cannot be implemented (since you have no way of asking a servlet if it can or cannot process a resource). I'll implement something which works and which is very close to what the spec requires.

Re: [5.0] [PROPOSAL] Validation/NamespaceAware

2002-08-15 Thread costinm
Big +1 ! We can have a small ant-based script that can validate a webapp - find all the XMLs and TLDs and run schema and DTD validation on it. Another nice thing we could do - if someone has the time - is adding 'Serializable' to Context and all other config objects and saving a snapshot. Then

Re: [5][PATCH]Run Watchdog from the jakarta-tomcat-5 build.xml

2002-08-15 Thread costinm
On Thu, 15 Aug 2002, Patrick Luby wrote: Costin, [EMAIL PROTECTED] wrote: Patrick ( if you read this ) - what's the status with the 'guess home' ? I can use IntrospectionUtils - it has the whole thing in it ( home/base setting, find in classpath ). We already need IU for jk - it just

JMS for Tomcat

2002-08-15 Thread Ming Xie
Hi, Does anyone know if Tomcat supports JMS ? Where is the document if yes. Can I use j2ee server from Sun as message system when I use Tomcat ? Please advise. Ming CONFIDENTIALITY NOTICE This electronic mail transmission and any accompanying documents contain information belonging to the

DO NOT REPLY [Bug 11745] New: - web.xml session-timeout value of 0 does not work as specified.

2002-08-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11745. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: JMS for Tomcat

2002-08-15 Thread Zhenxin wang
I do not think Tomcat supports JMS, Tomcat is only a servlet and JSP container. --Zhenxin Wang DoCoMo Labs USA - Original Message - From: Ming Xie [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 15, 2002 1:33 PM Subject: JMS for Tomcat Hi, Does anyone know if Tomcat

[PATCH][5] build.properties.defaut, BUILDING.txt

2002-08-15 Thread Jean-francois Arcand
Digester, version 20020815 or later - commons-digester.home=${base.path}/commons-digester-1.3 commons-digester.lib=${commons-digester.home} commons-digester.jar=${commons-digester.lib}/commons-digester.jar Index: BUILDING.txt === RCS

Re: [5.0] [PROPOSAL] Refactored mapper

2002-08-15 Thread Patrick Luby
[EMAIL PROTECTED] wrote: The current specification is not implementable for Apache ( or any other web server ) - and it breaks every pattern that was used in the web. I don't know if we have any representative in the expert group or what's the procedure that apache follows in voting for JCP

DO NOT REPLY [Bug 11747] New: - Context level LifeCycleListener does not get invoked if context is defined in a my-context.xml file rather than in server.xml

2002-08-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11747. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 11747] - Context level LifeCycleListener does not get invoked if context is defined in a my-context.xml file rather than in server.xml

2002-08-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11747. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 11748] New: - Location header for redirection does not contain the port number

2002-08-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11748. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 11748] - Location header for redirection does not contain the port number

2002-08-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11748. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Tomcat 4.1.9: LifeCycleListener defined in context does not get notified (BUG?)

2002-08-15 Thread Roytman, Alex
Hello I noticed that in Tomcat 4.1.9 my LifeCycleListener defined on context level does not get notified. The same code worked fine in TC 4.0.4 and it also works if I move listener definition to server level. Thank you very much Alex Roytman -- To unsubscribe, e-mail: mailto:[EMAIL

Re: [5.0] [PROPOSAL] Refactored mapper

2002-08-15 Thread Patrick Luby
Remy and Costin, I found the following draft wording that is being considered for the Servlet 2.4 spec. The exact wording may change, but the context should stay the same. Are there any unimplementable pieces in this proposed wording: The wording in the 4th paragraph in section 9.10 of the

[5] Config

2002-08-15 Thread cmanolache
After a lot of thinking and searching, I found a solution that I think will work well. If you like it - I'll need some help from Remy to implement it. If you don't like it - I'm waiting for a better one... There are 3 major parts: 1. Config storage. Currently that's server.xml. 2. Configuring

DO NOT REPLY [Bug 11753] New: - Synchronous startup script - startup.sh should wait until Tomcat is fully started

2002-08-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11753. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 11754] New: - Synchronous shutdown script - shutdown.sh should wait until Tomcat is fully shut down

2002-08-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11754. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 11755] New: - Possible to hang new instance if old instance is not yet fully shut down

2002-08-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11755. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 11755] - Possible to hang new instance if old instance is not yet fully shut down

2002-08-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11755. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/valves ErrorDispatcherValve.java

2002-08-15 Thread patrickl
patrickl2002/08/15 16:51:14 Modified:catalina/src/share/org/apache/catalina/valves ErrorDispatcherValve.java Log: If a Servlet generates a RuntimeException, it is wrapped by a ServletException. Since there is an entry for ServletException in the web.xml,

Re: [5] Config

2002-08-15 Thread Craig R. McClanahan
(Breathing a sigh of relief that I don't actually have to *implement* this stuff, but hoping to contribute a little anyway :-) On Thu, 15 Aug 2002 [EMAIL PROTECTED] wrote: Date: Thu, 15 Aug 2002 15:50:00 -0700 (PDT) From: [EMAIL PROTECTED] Reply-To: Tomcat Developers List [EMAIL PROTECTED]

cvs commit: jakarta-tomcat-4.0/webapps/admin/WEB-INF/classes/org/apache/webapp/admin/realm JNDIRealmForm.java SaveJNDIRealmAction.java

2002-08-15 Thread amyroh
amyroh 2002/08/15 17:30:45 Modified:webapps/admin/WEB-INF/classes/org/apache/webapp/admin ApplicationResources_en.properties ApplicationResources_es.properties webapps/admin/WEB-INF/classes/org/apache/webapp/admin/realm

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/mbeans mbeans-descriptors.xml

2002-08-15 Thread amyroh
amyroh 2002/08/15 17:31:08 Modified:catalina/src/share/org/apache/catalina/mbeans mbeans-descriptors.xml Log: Minor change in format. Revision ChangesPath 1.67 +18 -18

Re: Absolute fields required for JDBC JNDI Realm pages in adminwebapp

2002-08-15 Thread Amy Roh
John, Thanks for the feedback. John Holman wrote: Amy Yes - much too strict for JNDIRealm! I agree! The only configuration attributes that should always be specified for this realm are className and connectionURL. In addition either userPattern or userSearch must be specified (but not

jk2 crashes apache2

2002-08-15 Thread Peter T. Abplanalp
hi all. i have spent the evening trying to get tomcat 4.0.4 connected to apache 2 via mod_jk2 with no success. i got the cvs jtc, compiled the java side, installed the java stuff in tomcat, compiled the native stuff, installed that in apache2, created my jk2 and workers2 properties files in the

Re: [5.0] [PROPOSAL] Refactored mapper

2002-08-15 Thread Bill Barker
- Original Message - From: Remy Maucherat [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Sent: Thursday, August 15, 2002 10:23 AM Subject: [5.0] [PROPOSAL] Refactored mapper Hi, I have been hinting at rewriting the main Catalina mapper for Tomcat 5. The proposal is

cvs commit: jakarta-tomcat-5 BUILDING.txt build.properties.default build.xml

2002-08-15 Thread patrickl
distribution (version 20020815 or later) from: http://jakarta.apache.org/builds/jakarta-commons/release/commons-digester 1.28 +4 -4 jakarta-tomcat-5/build.properties.default Index: build.properties.default

Re: [5][PATCH]Run Watchdog from the jakarta-tomcat-5 build.xml

2002-08-15 Thread Patrick Luby
Costin, I took a look at InspectionUtils.guessInstall() and it looks OK. However, it has one limitation: it looks at the classpath to guess the install directory. This works in most cases, but does not work when the InspectionUtils class is loaded in a classloader. Since both the

Re: [5] Config

2002-08-15 Thread Costin Manolache
Craig R. McClanahan wrote: (Breathing a sigh of relief that I don't actually have to *implement* this stuff, but hoping to contribute a little anyway :-) Well, the fact that I don't have to implement much is a relief for me too... Both the API and a lot of drivers ( including xml file ) are