RE: Tomcat 4.0 Milestone 4

2000-11-02 Thread GOMEZ Henri
How could we find more information (and even code) about mod_warp ? I'll very happy to test it on Apache 1.3.14 . BTW will it be used in TC 3.3 ? "La maîtrise des autres n'est que la force. La maîtrise de vous-même est le véritable pouvoir" -- Lao Tzu -Original Message- From: Craig

RE: cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/util M essageBytes.java MimeHeaders.java MimeMap.java SessionIdGenerator.java

2000-11-02 Thread Costin Manolache
--- Larry Isaacs [EMAIL PROTECTED] wrote: Hi Costin, Good to see you back. FYI: My helper\SessionUtil.java is still looking for SessionIdGenerator.generateId(). Did you mean to commit SessionUtil.java too? Yes, but there are few other changes and I need to "serialize" the commits.

Fw: Tomcat as a service on NT

2000-11-02 Thread José Luis Gómez Bocanegra
Hi Tomcat team, I'm trying to use Tomcat as a service on NT, but I can see an error in stderr.log file, this error is: java.lang.NoClassDefFoundError: javax/xml/parsers/SAXParserFactory Where can I find this class? My CLASSPATHcontains: jaxp.jar, jasper.jar, webserver.jar and

BugRat Report #329 has been filed.

2000-11-02 Thread BugRat Mail System
Bug report #329 has just been filed. You can view the report at the following URL: http://znutar.cortexity.com:/BugRatViewer/ShowReport/329 REPORT #329 Details. Project: Tomcat Category: Bug Report SubCategory: New Bug Report Class: docbug State: received Priority: high Severity:

Re: Tomcat 4.0 Milestone 4 performance measurement

2000-11-02 Thread Craig R. McClanahan
I agree that it's definitely time to start doing this. However, to have useful results, it is important that we execute the same test procedures -- otherwise, you cannot even reproduce the same results reliably on the same platform. Roy, would it be possible for you to write us a simple

Re: Hello? Anybody?

2000-11-02 Thread Craig R. McClanahan
Ethan Wallwork wrote: Since the spec implies that exceptions should be thrown from a RequestDispatcher call rather than handled, and there seems to be nothing in the spec that forbids this behavior, I would like to see it implemented this way. Does anyone know of any reasons it shouldn't be

Re: Hello? Anybody?

2000-11-02 Thread Craig R. McClanahan
Larry Isaacs wrote: Thanks Craig, To support this behavior, should the spec require that for a JSP that is "included" or "forwarded", handlePageException() is required to propagate the exception back to the caller? Currently, it just says that if there is no error page, it should "perform

Re: BugRat Report #83 - When running the examples, compilation from jsp to java enters an endless loop, filling the filesystem

2000-11-02 Thread Carlos Anjos
BugRat Mail System wrote: - Sender's Comment - Hi, Carlos, have you solved this in any manner, from a thread in Tomcat-user o dev i dont remenber i took that this bug it a JDK problem, if have solved this in any manner let me know please to add a workaround to the bug, thanks.

TC3: New config mechansims

2000-11-02 Thread cmanolache
Hi, I would like to propose a number of changes to the way tomcat is set up and configured. 1. Support for virtual hosts. AutoSetup uses TOMCAT_HOME/webapps, but that doesn't allow virtual hosts. The new mechanism should use something like TOMCAT_HOME/hosts, with DEFAULT used for the default

BugRat Report #83 was closed (apparently by: Ignacio Ortega)

2000-11-02 Thread BugRat Mail System
Report #83 was closed by Person #0 Synopsis: When running the examples, compilation from jsp to java enters an endless loop, filling the filesystem (logged in as: Ignacio Ortega) - To unsubscribe, e-mail: [EMAIL

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/util IntrospectionUtils.java

2000-11-02 Thread costin
costin 00/11/02 13:12:02 Added: src/share/org/apache/tomcat/util IntrospectionUtils.java Log: Various utilities using introspection to do tricks. hasHook is used to determine if a class "overrides" a method in a parent class. Other common ( high level ) introspection

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/context DefaultCMSetter.java

2000-11-02 Thread costin
costin 00/11/02 13:14:39 Modified:src/share/org/apache/tomcat/context DefaultCMSetter.java Log: Moved "DEFAULT_WORK_DIR" from ContextManager to an interceptor. The setting can be changed ( if tomcat is integrated in other products for example ), and "core" shouldn't depend on

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/context ErrorHandler.java

2000-11-02 Thread costin
costin 00/11/02 13:17:41 Modified:src/share/org/apache/tomcat/context ErrorHandler.java Log: Removed ContextManger.getDefaultContext(). The method doesn't work with virtual hosts, and it wasn't used in any other place then ErrorHandler. Any Context that needs the "/"

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/context LogEvents.java

2000-11-02 Thread costin
costin 00/11/02 13:18:56 Modified:src/share/org/apache/tomcat/context LogEvents.java Log: Just indentation ( 80 columns ). Revision ChangesPath 1.6 +27 -10 jakarta-tomcat/src/share/org/apache/tomcat/context/LogEvents.java Index: LogEvents.java

BugRat Report #333 has been filed.

2000-11-02 Thread BugRat Mail System
Bug report #333 has just been filed. You can view the report at the following URL: http://znutar.cortexity.com:/BugRatViewer/ShowReport/333 REPORT #333 Details. Project: Tomcat Category: Bug Report SubCategory: New Bug Report Class: swbug State: received Priority: high Severity:

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core BaseInterceptor.java

2000-11-02 Thread costin
costin 00/11/02 13:24:44 Modified:src/share/org/apache/tomcat/core BaseInterceptor.java Log: Moved "hasHook" to an interceptor, it's used by Container when it adds a hook. Added more comments, moved auxiliary code at end of the file. Removed unused code ( the old

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core ContextManager.java Container.java

2000-11-02 Thread costin
costin 00/11/02 13:35:34 Modified:src/share/org/apache/tomcat/core ContextManager.java Container.java Log: Big changes: - Fixed the code to match the comments :-) ( i.e. respect the server state, make sure the callbacks are called in the right order

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Request.java

2000-11-02 Thread costin
costin 00/11/02 13:39:13 Modified:src/share/org/apache/tomcat/core Request.java Log: - Added request "state" - Replaced String with MessageBytes for request components ( uri, method, protocol, etc). ( needed for no-ascii charset support, performance ) - replace

cvs commit: jakarta-tomcat/src/facade23/org/apache/tomcat/facade23 HttpServletRequestFacade.java HttpServletResponseFacade.java RequestDispatcherImpl.java ServletWrapper.java

2000-11-02 Thread costin
costin 00/11/02 13:51:47 Modified:src/facade22/org/apache/tomcat/facade HttpServletRequestFacade.java HttpServletResponseFacade.java RequestDispatcherImpl.java Servlet22Interceptor.java

Re: Tomcat 3.2 release (again) ?

2000-11-02 Thread Jim Driscoll
"[EMAIL PROTECTED]" wrote: On Mon, 30 Oct 2000, Petr Jiricka wrote: Hi, I'd like to ask where the Tomcat 3.2 final release discussions are right now. It seemed that the last outstanding issue was the compilation under JDK 1.1, but that should be fixed now. So is there still

Tomcat as a Service on NT

2000-11-02 Thread Miller, Anthony
Hi, I have installed Tomcat as a service on NT but now it can't see the classes111. zip file for the oracle driver. I've tried adding set CLASSPATH=%CLASSPATH% to the tomcat.bat file (instead of set CLASSPATH=. etc) but it can't see the classes111.zip file. However when I run the service in