cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core StandardWrapper.java

2001-05-09 Thread remm
remm01/05/08 23:56:16 Modified:catalina/src/share/org/apache/catalina/core StandardWrapper.java Log: - Set context class loader during init / destroy. Based on a patch submitted by Kyle F. Downey kdowney at amberarcher.com Revision Changes

Collaborative Development (not Cat and Dog)

2001-05-09 Thread Paulo Gaspar
Besides developers and their own itches, there is another group whose interests ought to be considered - USERS of Tomcat. If you don't have any, then it becomes a much less interesting project to work on. And we've done a pretty good job at confusing people about what the Tomcat road map

Re: Bad link to tomcat 3.2.2beta3 on tomcat site

2001-05-09 Thread Glenn Nielsen
Jon Stevens wrote: on 5/8/01 3:15 PM, Glenn Nielsen [EMAIL PROTECTED] wrote: The link on the below page is to Tomcat 3.2.2 beta 3 instead of beta 4, beta 3 doesn't exist on the server. http://jakarta.apache.org/site/binindex.html Thank you for asking for permission to commit to

ajp13 and tomcat 4

2001-05-09 Thread kevin seguin
so, i guess the essence of this message is, what might be a short-term plan for having ajp13 support in tomcat 4? i have done some preliminary work, creating an ajp13 connector for tc 4, which for the most part works. long term, i think part of this code will live in

Any known issues with Tomcat 3.2.1 and class loading ?

2001-05-09 Thread Hawkins, Keith (Keith)
Title: Any known issues with Tomcat 3.2.1 and class loading ? Dear Developers: Are there any known issues with class loading under Tomcat 3.2.1? My situation is that classes in jar files that reside in the WEB-INF/lib directory for my servlet fail to load when accessed under Tomcat. Yet

build.xml file not supporting documented items?

2001-05-09 Thread Seasundown
TIA! Please provide error free version of enclosed build.xml file represented on pg 722-723 in Prof. JSP (enclosed). Or provide information as to what is not supported or so many given syntax features for build.xml don't working. This makes ant more of a hassle than a help. Make was better

Re: New CVS Repositories

2001-05-09 Thread Mel Martinez
Hi folks, Once again, I must apologize for my recent lack of participation. I've been traveling quite a bit (house hunting - it is official, we'll be moving to the greater boston area.) and so I have not been able to keep up with the list except in spurts. I've just now managed to catch up

[PROPOSAL] Update to Tomcat 3.3 Release Plan

2001-05-09 Thread Larry Isaacs
Sorry to have been out of action for so long. To bring Tomcat 3.3 to a release, I propose the following changes to the RELEASE-PLAN-3.3. 1) Add a Milestone 3 Release with the following details: Code Freeze/Tag Date: May 12, 2001 Release Manager:Larry Isaacs 2) Update the

How do I file a bug report?

2001-05-09 Thread Hawkins, Keith (Keith)
Title: How do I file a bug report? Dear Developers: It seems that to use 3rd party classes with a servlet running under Tomcat 3.2.1, it is not sufficient to place the 3rd party jar files in the webapp/WEB-INF/lib directory. I am forced to edit wrapper.class_path entry in

RE: Any known issues with Tomcat 3.2.1 and class loading ?

2001-05-09 Thread Wildeboer, Tonnis
Title: Any known issues with Tomcat 3.2.1 and class loading ? If they are .zip files you'll have to add them to the CLASSPATH yourself. --Tonnis -Original Message-From: Hawkins, Keith (Keith) [mailto:[EMAIL PROTECTED]]Sent: Wednesday, May 09, 2001 8:24 AMTo: [EMAIL

Re: New CVS Repositories

2001-05-09 Thread Craig R. McClanahan
On Wed, 9 May 2001, Mel Martinez wrote: I'm not sure if the proper repository name for a servlet-engine-independent version of Jasper (which is a primary goal of the jasper34 refactoring) should be 'jakarta-tomcat-jasper'. Why not just jakarta-jasper? The convention for CVS

Re: [GUMP] Build Failure - Tomcat 3.x

2001-05-09 Thread Craig R. McClanahan
On Wed, 9 May 2001 [EMAIL PROTECTED] wrote: On 9 May 2001, Craig McClanahan wrote: This email is autogenerated from the output from: http://jakarta.apache.org/builds/gump/2001-05-09/jakarta-tomcat.html

Re: Collaborative Development (not Cat and Dog)

2001-05-09 Thread Craig R. McClanahan
On Wed, 9 May 2001, Paulo Gaspar wrote: Besides developers and their own itches, there is another group whose interests ought to be considered - USERS of Tomcat. If you don't have any, then it becomes a much less interesting project to work on. And we've done a pretty good job at

RE: FW: Any known issues with Tomcat 3.2.1 and class loading ?

2001-05-09 Thread Hawkins, Keith (Keith)
Title: RE: FW: Any known issues with Tomcat 3.2.1 and class loading ? No, they are not .zip files. They are .jar files. Specifically jndi.jar, ldap.jar and providerutil.jar, which are provided by Sun for accessing LDAP databases via JNDI. I was able to get the Tomcat to load these classes

Re: Collaborative Development (not Cat and Dog)

2001-05-09 Thread cmanolache
On Wed, 9 May 2001, Craig R. McClanahan wrote: Just off the main Apache web site, Tomcat binary downloads (in various release and nightly build formats) run from 50,000 to 100,000 downloads per month. That doesn't count mirror sites (official and unofficial), people who download Tomcat as

Re: [PROPOSAL] Update to Tomcat 3.3 Release Plan

2001-05-09 Thread cmanolache
+1 Larry - it would be great to also have a list with the bugs you consider to have high priority, in order for us to work on those bugs first. Costin On Wed, 9 May 2001, Larry Isaacs wrote: Sorry to have been out of action for so long. To bring Tomcat 3.3 to a release, I

Re: Collaborative Development (not Cat and Dog)

2001-05-09 Thread cmanolache
I feel a personal, moral, obligation to the thousands and thousands of people who download Tomcat in the hopes of having a servlet container that works, and who want to have confidence in a solid support and future +1 Very well put, for me it's the only reason I'm still subscribed to this

RE: FW: Any known issues with Tomcat 3.2.1 and class loading ?

2001-05-09 Thread Gudmundur Hafsteinsson
Before answering your question, two things: - This is a user question, please use the tomcat-user list, this list is for development of Tomcat. - Don't send HTML mails to the list. Now regarding your problem, this is probably the typical classloader problem so many run into. If the code which

RE: FW: Any known issues with Tomcat 3.2.1 and class loading ?

2001-05-09 Thread cmanolache
One possible problem may be the fact that by default, tomcat3.2.1 doesn't set the context class loader ( a JDK1.2 feature ). Just add Jdk12Interceptor in server.xml RequestInterceptor className=org.apache.tomcat.request.Jdk12Interceptor / ( the default config assumes JDK1.1. In

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/connector/warp WarpConnector.java

2001-05-09 Thread craigmcc
craigmcc01/05/09 16:42:19 Modified:catalina/src/conf server.xml catalina/src/share/org/apache/catalina Connector.java catalina/src/share/org/apache/catalina/authenticator AuthenticatorBase.java

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core StandardWrapper.java

2001-05-09 Thread craigmcc
craigmcc01/05/09 16:54:14 Modified:catalina/src/share/org/apache/catalina/core StandardWrapper.java Log: Clean up NPE at shutdown time caused by the fact that loader was not initialized. Revision ChangesPath 1.21 +5 -5

security and a servlet using core catalina classes

2001-05-09 Thread Fabien Le Floc'h
Thanks for your answer, I decided to put my servlet in the catalina hierarchy (on my personal computer). When it will be more advanced, I could even propose it as a contribution to catalina. But I think would have been possible to bypass the security by just using reflection to call the core

cvs commit: jakarta-tomcat-4.0/tester/web/WEB-INF web.xml

2001-05-09 Thread craigmcc
craigmcc01/05/09 18:21:26 Modified:tester/src/bin tester.xml tester/web/WEB-INF web.xml Added: tester/web Authentication04.jsp Log: Add a unit test for retrieving roles (directly and via an alias) from a JSP page (Authentication04) as well as a servlet

RE: [PROPOSAL] Update to Tomcat 3.3 Release Plan

2001-05-09 Thread Mike Braden
+1 -- Mike Braden [EMAIL PROTECTED] [EMAIL PROTECTED] -Original Message- From: Larry Isaacs [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 09, 2001 12:56 PM To: '[EMAIL PROTECTED]' Subject: [PROPOSAL] Update to Tomcat 3.3 Release Plan Sorry to have been out of action for so long. To

Re: security and a servlet using core catalina classes

2001-05-09 Thread Craig R. McClanahan
On 9 May 2001, Fabien Le Floc'h wrote: Ok, this is possible to bypass the security! Catalina conforms to the behavior in the Servlet 2.3 PFD2 Specification (Section 9.7.2) but does not comply with its recommended behaviour. Which recommended behavior are you concerned about? Catalina

Re: security and a servlet using core catalina classes

2001-05-09 Thread Craig R. McClanahan
On Wed, 9 May 2001, Craig R. McClanahan wrote: Catalina only lets servets installed in $CATALINA_HOME/servlet have this kind of access). Oops, that's actually $CATALINA_HOME/server. Craig

cvs commit: jakarta-tomcat-4.0/connectors Makedefs.in Makefile.in

2001-05-09 Thread pier
pier01/05/09 23:05:42 Modified:connectors Makedefs.in Makefile.in Log: Update Makefile to halt on error without processing further subdirectories Added Make definitions for 1.3 APXS Revision ChangesPath 1.2 +5 -2

cvs commit: jakarta-tomcat-4.0/connectors/include wa_webserver.h

2001-05-09 Thread pier
pier01/05/09 23:08:24 Removed: connectors/include wa_webserver.h Log: Structures moved in wa_request.h

cvs commit: jakarta-tomcat-4.0/connectors/include wa_config.h

2001-05-09 Thread pier
pier01/05/09 23:11:32 Added: connectors/include wa_config.h Log: Moved configuration functions from wa_main.h to a new wa_config.h Revision ChangesPath 1.1 jakarta-tomcat-4.0/connectors/include/wa_config.h Index: wa_config.h

cvs commit: jakarta-tomcat-4.0/connectors/lib Makefile.in

2001-05-09 Thread pier
pier01/05/09 23:17:07 Modified:connectors/lib Makefile.in Log: Modified names for libraries and objects Revision ChangesPath 1.5 +3 -3 jakarta-tomcat-4.0/connectors/lib/Makefile.in Index: Makefile.in

cvs commit: jakarta-tomcat-4.0/connectors/include wa.h

2001-05-09 Thread pier
pier01/05/09 23:17:21 Modified:connectors/include wa.h Log: Updated to reflect new header names. Revision ChangesPath 1.4 +19 -7 jakarta-tomcat-4.0/connectors/include/wa.h Index: wa.h