Re: cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat5 CoyoteRequest.java LocalStrings.properties

2002-08-08 Thread Bill Barker
> +// Remove the specified attribute > +synchronized (attributes) { > +// Check for read only attribute > + if (readOnlyAttributes.containsKey(name)) > +return; > +found = attributes.containsKey(name); > +i

[POLL] Configuration API of tomcat5

2002-08-08 Thread Costin Manolache
Few questions: 1. JMX as low-level configuration API. The question is - should we follow the path of JBoss and make everything that is configurable an MBean, and base the entire architecture on JMX ? The benefits: - standard API - reasonably clean - easy to integrate with other apps using JMX

Re: [PROPOSAL] Have Bootstrap and BootsrapService share startup/shutdown code

2002-08-08 Thread Costin Manolache
Remy Maucherat wrote: > BootstrapService never used a port. You're right. I keep confusing the things - I now switched to CatalinaService and it works. BootstrapService depends on daemon - and I don't use daemon to start. ( I hope deamon will switch to introspection ) > Sorry I missed somet

cvs commit: jakarta-tomcat-catalina/tester/src/tester/org/apache/tester Request01.java RequestListener01.java

2002-08-08 Thread horwat
horwat 2002/08/08 19:12:14 Modified:tester/web/WEB-INF web.xml tester/src/bin tester.xml Added: tester/src/tester/org/apache/tester Request01.java RequestListener01.java Log: Add test case for new servlet request events. Revision

cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat5 CoyoteRequest.java LocalStrings.properties

2002-08-08 Thread horwat
horwat 2002/08/08 19:10:10 Modified:coyote/src/java/org/apache/coyote/tomcat5 CoyoteRequest.java LocalStrings.properties Log: Add servlet request attribute change event support. Revision ChangesPath 1.2 +130 -6 jakarta-tomcat-connectors

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core StandardContext.java LocalStrings.properties

2002-08-08 Thread horwat
horwat 2002/08/08 19:07:12 Modified:catalina/src/share/org/apache/catalina/valves LocalStrings.properties catalina/src/share/org/apache/catalina/mbeans mbeans-descriptors.xml catalina/src/share/org/apache/cat

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

2002-08-08 Thread amyroh
amyroh 2002/08/08 18:12:39 Modified:catalina/src/share/org/apache/catalina Realm.java catalina/src/share/org/apache/catalina/authenticator AuthenticatorBase.java catalina/src/share/org/apache/catalina/realm Constants.java

Re: [5][PATCH]commons-logging built without log4j/LogKit

2002-08-08 Thread Steve Downey
If you follow the directions in BUILDING.txt, it's not necessary to download log4j or LogKit. BUILDING.txt asks for a nightly build of commons-logging, which would have been built against log4j and LogKit. If they aren't present at runtime, they won't be used as the implementation of commons-l

cvs commit: jakarta-servletapi-5/src/share/javax/servlet/jsp JspContext.java

2002-08-08 Thread patrickl
patrickl2002/08/08 15:20:31 Modified:src/share/javax/servlet/jsp JspContext.java Log: Reverse previous commit as it breaks the jakarta-tomcat-jasper/jasper2 build. Revision ChangesPath 1.3 +46 -0 jakarta-servletapi-5/src/share/javax/servlet/jsp/JspContext.java

Re: [PROPOSAL] Have Bootstrap and BootsrapService share startup/shutdowncode

2002-08-08 Thread Patrick Luby
Remy, Remy Maucherat wrote: > > No, I'd rather do something according to the pre-proposal put forward by > Costin that would be a refactoring of the whole startup and > configuration code, rather than an evolution of the current code. I > don't have much interest in trying to improve that cod

DO NOT REPLY [Bug 11307] - Deadlock in ClassLoader

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

[5.0] [PATCH] I18N, CharsetMapper, DeploymentDescriptor

2002-08-08 Thread Bob Herrmann
In the Servlet 2.4 spec section 5.4 on i18n, the deployment descriptor gets new stuff for mapping locale to character encoding. The spec says, [Servlet 2.4, Section 5.4] "[...] The setLocale method also sets charset component in Content-Type with an encoding information which can be obtained fro

DO NOT REPLY [Bug 11573] New: - Can't run or compile JSP's

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

Re: [PROPOSAL] Have Bootstrap and BootsrapService share startup/shutdowncode

2002-08-08 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: > On Thu, 8 Aug 2002, Patrick Luby wrote: > > >>Wouldn't commons-daemon also want to use Bootstrap.java's classloader, >>etc. setup? Right now, all of this is buried in main() instead of a >>method that commons-daemon could access. > > > Sure - split the main into se

DO NOT REPLY [Bug 11572] - Bug with Http11Processor class

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

DO NOT REPLY [Bug 11307] - Deadlock in ClassLoader

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

DO NOT REPLY [Bug 11572] New: - Bug with Http11Processor class

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

Re: [PROPOSAL] Have Bootstrap and BootsrapService share startup/shutdowncode

2002-08-08 Thread Remy Maucherat
Patrick Luby wrote: > All, > > I have tested out some code in o.a.c.startup.Bootstrap.main() that finds > and loads the JDK tools (e.g. javac), loads the JSSE jars in > "jsse.home", turns on the Java security manager, determines and > catalina.home dynamically. These steps are currently done b

Re: [VOTE] new commiters

2002-08-08 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: > Well, we thank you - we'll have less work to do and more free time > ( and the reverse will happen for you ) :-) > > Just remember that is frustrating if commiters don't review and commit > contributions and patches in a timely manner :-) Now you are the > commiters

cvs commit: jakarta-servletapi-5/src/share/javax/servlet/jsp JspContext.java

2002-08-08 Thread kinman
kinman 2002/08/08 14:16:23 Modified:src/share/javax/servlet/jsp JspContext.java Log: - Oops! Forgot this one. Revision ChangesPath 1.2 +0 -46 jakarta-servletapi-5/src/share/javax/servlet/jsp/JspContext.java Index: JspContext.java ==

RE: Here we go again - mod_webapp and mod_rewrite

2002-08-08 Thread GAWLAS,JULIUS (HP-Cupertino,ex1)
Pier, I have a releated question - does it also mean that currently mod_webapp will not work with Apache 2 that uses worker mpm? thanks Julius Gawlas > -Original Message- > From: Pier Fumagalli [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 07, 2002 9:57 AM > To: Tomcat Developers

cvs commit: jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/resources messages.properties

2002-08-08 Thread kinman
kinman 2002/08/08 13:41:03 Modified:jasper2/src/share/org/apache/jasper/compiler Generator.java Parser.java TagFileProcessor.java Validator.java jasper2/src/share/org/apache/jasper/resources messages.properties Log: - M

cvs commit: jakarta-servletapi-5/src/share/javax/servlet/jsp/tagext DynamicAttributes.java JspFragment.java SimpleTag.java SimpleTagSupport.java AttributeNotSupportedException.java

2002-08-08 Thread kinman
kinman 2002/08/08 13:33:14 Modified:src/share/javax/servlet/jsp JspTagException.java PageContext.java src/share/javax/servlet/jsp/tagext DynamicAttributes.java JspFragment.java SimpleTag.java SimpleT

[PATCH][tomcat-catalina] RealmBase/Authenticator re-factoring.

2002-08-08 Thread Jean-francois Arcand
HI, I have completed the move of the authorization logic from the o.a.c.authenticator.AuthenticatorBase to the o.a.c.realm.RealmBase. The Realm class has now three new methods: /** * Return the SecurityConstraint configured to guard the request URI for * this request, or null if

Tocmat 5 failing watchdog on all tests

2002-08-08 Thread Patrick Luby
All, After the commits this morning to jakarta-tomcat-catalina, all of the watchdog tests are failing for Tomcat 5. I suspect that this has something to do with Jean-Francois' patch this morning but I cannot be sure as the problem is that Tomcat 5 is throwing exceptions when parsing TLD files

cvs commit: jakarta-servletapi-5 build.xml

2002-08-08 Thread patrickl
patrickl2002/08/08 13:26:32 Modified:.build.xml Log: Patch to save javadocs between builds. Submitted by: [EMAIL PROTECTED] Revision ChangesPath 1.4 +1 -1 jakarta-servletapi-5/build.xml Index: build.xml ===

RE: [5][PATCH]commons-logging built without log4j/LogKit

2002-08-08 Thread Steve Downey
It's headed in the right direction, I think. But depending on CVS versions of other projects _by_default_ is a bit on the scary side. > -Original Message- > From: Bill Barker [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 08, 2002 1:32 AM > To: Tomcat Developers List > Subject: Re:

cvs commit: jakarta-tomcat-jasper/jasper2 build.properties.sample

2002-08-08 Thread costin
costin 2002/08/08 12:45:35 Modified:jasper2 build.properties.sample Log: Update to match the new build dir. Uncomment jsptl, use the one in cvs. Revision ChangesPath 1.2 +4 -4 jakarta-tomcat-jasper/jasper2/build.properties.sample Index: build.properties