DO NOT REPLY [Bug 6263] New: - java.lang.UnsatisfiedLinkError using lotus.domino classes

2002-02-06 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=6263. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6263] - java.lang.UnsatisfiedLinkError using lotus.domino classes

2002-02-06 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=6263. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6264] New: - Unable to javac code made with Jasper due to reference to non-existent method

2002-02-06 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=6264. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6264] - Unable to javac code made with Jasper due to reference to non-existent method

2002-02-06 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=6264. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6267] - RequestDispatcher breaks on URLs with anchors

2002-02-06 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=6267. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6265] - Using Apache and Tomcat is impossible

2002-02-06 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=6265. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6267] - RequestDispatcher breaks on URLs with anchors

2002-02-06 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=6267. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6115] - URL encoding of session id doesn't work correctly with anchors/fragments

2002-02-06 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=6115. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6267] - RequestDispatcher breaks on URLs with anchors

2002-02-06 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=6267. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6115] - URL encoding of session id doesn't work correctly with anchors/fragments

2002-02-06 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=6115. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6273] New: - page directive without attribute

2002-02-06 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=6273. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/common JkInputStream.java

2002-02-06 Thread costin
costin 02/02/06 09:11:30 Added: jk/java/org/apache/jk/common JkInputStream.java Log: Common implementation of the input stream, will be shared by all containers. This code is derived from tomcat3.3's implementation, which is newer ( it happen after j-t-c was forked, in

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/core JkHandler.java Handler.java

2002-02-06 Thread costin
costin 02/02/06 09:25:07 Added: jk/java/org/apache/jk/core JkHandler.java Removed: jk/java/org/apache/jk/core Handler.java Log: Renamed Handler to JkHandler - the name is hugely overloaded, and likely to create conflicts. I think the architecture of jk2 is close to

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/core MsgContext.java Endpoint.java

2002-02-06 Thread costin
costin 02/02/06 09:27:03 Added: jk/java/org/apache/jk/core MsgContext.java Removed: jk/java/org/apache/jk/core Endpoint.java Log: Renamed Endpoint to MsgContext. Added few common attributes ( that are used all the times ). The MsgContext is a store for info exchanged

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/core Webapp.java Worker.java

2002-02-06 Thread costin
costin 02/02/06 09:28:42 Removed: jk/java/org/apache/jk/core Webapp.java Worker.java Log: Removed webapp - jk should deal only with the communication. The config generator will be refactored and included in a separate package. Removed Worker - it's just a handler, no

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/core Channel.java

2002-02-06 Thread costin
costin 02/02/06 09:32:19 Modified:jk/java/org/apache/jk/core Channel.java Log: Channel is just a handler ( the first in the chain ). Note that at this moment the invoke command hardcodes the 'next' handler, but that can be overriden ( it's just a default ). The handler

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/core Msg.java

2002-02-06 Thread costin
costin 02/02/06 09:33:50 Modified:jk/java/org/apache/jk/core Msg.java Log: 2 more methods - peekByte used to dispatch and Tag, the message type. Msg must be abstracted, it's still too Ajp13 specific. Jk should work with any kind of messages - including soap or IIOP.

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/core WorkerEnv.java

2002-02-06 Thread costin
costin 02/02/06 09:36:07 Modified:jk/java/org/apache/jk/core WorkerEnv.java Log: Moved the process() logic in the HandlerDispatch, it doesn't have to be hardcoded. Added a 'home' property. Added 'notes' for the workerenv ( for generic properties stored by handlers ) Removed

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/core Chain.java

2002-02-06 Thread costin
costin 02/02/06 09:37:16 Added: jk/java/org/apache/jk/core Chain.java Log: Initial ( incomplete ) version of the Chain - that allows iterative calling of handlers. XXX would it be better to move it in commons - it's after all just a simple handler ? Revision

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/common HandlerDispatch.java

2002-02-06 Thread costin
costin 02/02/06 09:41:29 Added: jk/java/org/apache/jk/common HandlerDispatch.java Log: Dispatch handler - based on the message type will call the right handler. This is specific to ajp13 ( or any other transport that stores the message type as the first byte of the

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/common ChannelJni.java ChannelSocket.java ChannelUn.java

2002-02-06 Thread costin
costin 02/02/06 09:43:08 Modified:jk/java/org/apache/jk/common ChannelJni.java ChannelSocket.java ChannelUn.java Log: Update for the api changes. Added isSameAddress from Ajp12Interceptor - will be used with the secret for the shutdown handler.

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/common HandlerRequest.java

2002-02-06 Thread costin
costin 02/02/06 09:48:22 Modified:jk/java/org/apache/jk/common HandlerRequest.java Log: Few big changes here: - added support for 'secret' - as a normal request attributes. If the handler is configured to require a secret, it'll block any request without one. If not -

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/common MsgAjp.java WorkerDummy.java

2002-02-06 Thread costin
costin 02/02/06 09:48:52 Modified:jk/java/org/apache/jk/common MsgAjp.java WorkerDummy.java Log: Update for the api changes. Revision ChangesPath 1.5 +6 -1 jakarta-tomcat-connectors/jk/java/org/apache/jk/common/MsgAjp.java Index: MsgAjp.java

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/config - New directory

2002-02-06 Thread costin
costin 02/02/06 09:49:07 jakarta-tomcat-connectors/jk/java/org/apache/jk/config - New directory -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/util C2B.java

2002-02-06 Thread costin
costin 02/02/06 09:49:42 Modified:jk/java/org/apache/jk/util C2B.java Log: remove debug statements. Revision ChangesPath 1.2 +3 -3 jakarta-tomcat-connectors/jk/java/org/apache/jk/util/C2B.java Index: C2B.java

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/server/tomcat33 JkRequest33.java JkResponse33.java JkServlet33.java Worker33.java

2002-02-06 Thread costin
costin 02/02/06 09:51:44 Modified:jk/java/org/apache/jk/server/tomcat33 JkRequest33.java JkResponse33.java JkServlet33.java Worker33.java Log: Update for the API changes. Add the missing input stream support. Now the 33 adapter should be fully

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/server/tomcat40 JkConfig40.java JkConnector.java JkRequest40.java JkResponse40.java Worker40.java

2002-02-06 Thread costin
costin 02/02/06 09:52:28 Modified:jk/java/org/apache/jk/server/tomcat40 JkConfig40.java JkConnector.java JkRequest40.java JkResponse40.java Worker40.java Log: Updates for the 4.x adapter. It should work fine ( except config, that

DO NOT REPLY [Bug 6281] New: - JDBCRealm+Form Login+URL re-writing session=broken

2002-02-06 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=6281. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/server JkMain.java

2002-02-06 Thread costin
costin 02/02/06 10:22:45 Modified:jk/java/org/apache/jk/server JkMain.java Log: Update for the simplified model ( handler-centric ) Read conf/jk2.properties and use if for configuration. It is very similar ( or identical ) with workers.properties - we want the C code to

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/server JkServlet.java JniMain.java

2002-02-06 Thread costin
costin 02/02/06 10:23:25 Modified:jk/java/org/apache/jk/server JkServlet.java JniMain.java Log: Update for the API and JkMain changes. Revision ChangesPath 1.6 +33 -23 jakarta-tomcat-connectors/jk/java/org/apache/jk/server/JkServlet.java Index:

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp Ajp13.java RequestHandler.java

2002-02-06 Thread costin
costin 02/02/06 10:26:50 Modified:jk/java/org/apache/ajp Ajp13.java RequestHandler.java Log: Added support for the ajp13 secret. It shouldn't affect anything in the normal use-case - it just recognizes the new request attributes if it's sent by apache. In addition, any

standardContext.namingInitFailed

2002-02-06 Thread Jack Lauman
I'm getting the following error in my log files after each webapp is loaded: StandardContext[/soap]: Cannot find message associated with key standardContext.namingInitFailed I assume this has something to do with JNDI... how can I fix it? Jack -- To unsubscribe, e-mail: mailto:[EMAIL

cvs commit: jakarta-tomcat-connectors/jk/conf jk2.properties

2002-02-06 Thread costin
costin 02/02/06 11:04:28 Added: jk/conf jk2.properties Log: Config file for jk2. Right now everything is commented - the defaults will be used. Uncomment/edit if you want to change anything. Revision ChangesPath 1.1

cvs commit: jakarta-tomcat-connectors/jk/conf jk2.manifest

2002-02-06 Thread costin
costin 02/02/06 11:06:16 Modified:jk/conf jk2.manifest Log: Added classes to classpath, for faster build in standalone Revision ChangesPath 1.2 +1 -1 jakarta-tomcat-connectors/jk/conf/jk2.manifest Index: jk2.manifest

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_ajp_common.c jk_ajp_common.h jk_service.h jk_util.c jk_util.h

2002-02-06 Thread costin
costin 02/02/06 11:11:23 Modified:jk/native/common jk_ajp_common.c jk_ajp_common.h jk_service.h jk_util.c jk_util.h Log: Implementation of the 'secret' attribute in the request, used to pass a key used to authenticate the sender. This shouldn't

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

2002-02-06 Thread costin
costin 02/02/06 11:13:10 Modified:jk/native2/common jk_ajp14_worker.c Log: Added the same secret option. Revision ChangesPath 1.15 +16 -52jakarta-tomcat-connectors/jk/native2/common/jk_ajp14_worker.c Index: jk_ajp14_worker.c

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

2002-02-06 Thread costin
costin 02/02/06 11:14:50 Modified:jk/native2/common jk_objCache.c Log: - a more efficient and natural alghoritm - instead of searching in the array for an object, we use a normal stack. - allow the cache to grow, if -1 is set as size Revision ChangesPath 1.4

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

2002-02-06 Thread costin
costin 02/02/06 11:15:25 Modified:jk/native2/common jk_vm_default.c Log: Update the defaults for the current naming conventions. Revision ChangesPath 1.3 +7 -11 jakarta-tomcat-connectors/jk/native2/common/jk_vm_default.c Index: jk_vm_default.c

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

2002-02-06 Thread costin
costin 02/02/06 11:16:25 Modified:jk/native2/common jk_workerEnv.c Log: Small fix - not all declared workers will be available. Revision ChangesPath 1.15 +12 -8 jakarta-tomcat-connectors/jk/native2/common/jk_workerEnv.c Index: jk_workerEnv.c

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

2002-02-06 Thread costin
costin 02/02/06 11:16:56 Modified:jk/native2/common jk_worker_status.c Log: Small update, remove debug statement. Revision ChangesPath 1.4 +24 -13jakarta-tomcat-connectors/jk/native2/common/jk_worker_status.c Index: jk_worker_status.c

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

2002-02-06 Thread costin
costin 02/02/06 11:18:21 Modified:jk/native2/include jk_env.h Log: Initial work on the exception mechanism, that would allow more meaningfull error messages out of jk. We can live without it, so it's low priority. Revision ChangesPath 1.5 +46 -4

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_objCache.h jk_worker.h jk_workerEnv.h

2002-02-06 Thread costin
costin 02/02/06 11:19:16 Modified:jk/native2/include jk_objCache.h jk_worker.h jk_workerEnv.h Log: Fixes/updates. Removed num_of_workers from workerEnv, it was redundant. Revision ChangesPath 1.5 +16 -3

DO NOT REPLY [Bug 5925] - Apache server hangs up and consumes 100% CPU resource when upload file to server

2002-02-06 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=5925. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

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

2002-02-06 Thread costin
costin 02/02/06 11:20:42 Modified:jk/native2/common jk_env.c jk_worker_jni.c Log: Updates/fixes. Revision ChangesPath 1.9 +19 -8 jakarta-tomcat-connectors/jk/native2/common/jk_env.c Index: jk_env.c

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

2002-02-06 Thread costin
costin 02/02/06 11:20:59 Modified:jk/native2/server/apache2 mod_jk.c Log: Updates. Revision ChangesPath 1.19 +11 -12jakarta-tomcat-connectors/jk/native2/server/apache2/mod_jk.c Index: mod_jk.c

Re: DO NOT REPLY [Bug 6267] - RequestDispatcher breaks on URLs with anchors

2002-02-06 Thread Bill Barker
Actually, Larry is right. However, what is being asked for is rather silly. Personally, I'd go for INVALID since section 8.1 (of the 2.3 spec) only talks about paths, not URIs. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 06, 2002 6:59 AM

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/server JkMain.java

2002-02-06 Thread costin
costin 02/02/06 12:24:09 Modified:jk/java/org/apache/jk/server JkMain.java Log: Added the start time and a message to tune the initialization of jk Revision ChangesPath 1.9 +8 -0 jakarta-tomcat-connectors/jk/java/org/apache/jk/server/JkMain.java Index:

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/server JkMain.java

2002-02-06 Thread costin
costin 02/02/06 12:24:45 Modified:jk/java/org/apache/jk/server JkMain.java Log: Forgot to save. Revision ChangesPath 1.10 +1 -1 jakarta-tomcat-connectors/jk/java/org/apache/jk/server/JkMain.java Index: JkMain.java

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/server JkMain.java

2002-02-06 Thread costin
costin 02/02/06 12:33:54 Modified:jk/java/org/apache/jk/common ChannelSocket.java jk/java/org/apache/jk/server JkMain.java Log: Set the default port, improve the arg parsing for JkMain ( used for debugging and tunning mostly, but since a lot of time is spent on

DO NOT REPLY [Bug 6286] New: - Spaces should be allowed in Servlet Context paths

2002-02-06 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=6286. 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/mbeans MBeanFactory.java

2002-02-06 Thread amyroh
amyroh 02/02/06 14:03:54 Modified:catalina/src/share/org/apache/catalina/mbeans MBeanFactory.java Log: Hard code to look for object names in Registry instead of full mbean names. Revision ChangesPath 1.5 +85 -35

Is there a Design Doc

2002-02-06 Thread Rajesh T
Hi, Is there any design doc/rose model for tomcat. In case there is one can I have a link to that doc. Sorry I am new to Tomacat. regards Rajesh T -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

[PATCH] Fixes problem with Warp connector and HTTP POST via SSL.

2002-02-06 Thread Glen Nakamura
Aloha, The following patch fixes a problem with SSL client ceritificates and HTTP POST data when using the Warp connector. When Tomcat retrieves the SSL certificate, the getX509Certificates() method is called and this.packet is reset... Now, when the read() method is called to retrieve the

problem with manager web app

2002-02-06 Thread Mark Gordon
I have a simple set up where I am using tomcat 4.0.1 and apache with mod_webapp. I have a couple of webapps and I am trying to use the manage web app to start/stop install/remove them. Everything works great if I am just using tomcat (for both http and servlet/jsp) When I use mod_webapp

Re: Is there a Design Doc

2002-02-06 Thread Janek Bogucki
--- Rajesh T [EMAIL PROTECTED] wrote: Hi, Is there any design doc/rose model for tomcat. In case there is one can I have a link to that doc. Sorry I am new to Tomacat. regards Rajesh T There are some *old* documents and diagrams here

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat4 Ajp13Connector.java Ajp13Processor.java

2002-02-06 Thread costin
costin 02/02/06 16:44:40 Modified:jk/java/org/apache/ajp/tomcat4 Ajp13Connector.java Ajp13Processor.java Log: Added the 'secret' attribute to Ajp13Connector. If not set, nothing changes in the request processing. If set - tomcat will require a

RE: cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat4 Ajp13Connector.java Ajp13Processor.java

2002-02-06 Thread Larry Isaacs
Any idea how soon? Larry -Original Message- From: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wed 2/6/2002 7:44 PM To: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] Cc: Subject: cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat4

Re: DO NOT REPLY [Bug 6267] - RequestDispatcher breaks on URLs with anchors

2002-02-06 Thread Remy Maucherat
Actually, Larry is right. However, what is being asked for is rather silly. Personally, I'd go for INVALID since section 8.1 (of the 2.3 spec) only talks about paths, not URIs. Yes, I missed a key word in the comments ;-) You're supposed to use a path relative to the servlet context, so I

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

2002-02-06 Thread manveen
manveen 02/02/06 18:20:37 Modified:webapps/admin/WEB-INF/classes/org/apache/webapp/admin ConnectorForm.java Log: Range for accept Count changed to 0,128. Revision ChangesPath 1.4 +5 -5

cvs commit: jakarta-tomcat-4.0/webapps/admin/WEB-INF/classes/org/apache/webapp/admin ApplicationResources_en.properties ApplicationResources_es.properties

2002-02-06 Thread manveen
manveen 02/02/06 18:22:58 Modified:webapps/admin/WEB-INF/classes/org/apache/webapp/admin ApplicationResources_en.properties ApplicationResources_es.properties Log: Updated error message for accept count for connector screen. Added

cvs commit: jakarta-tomcat/src/native/mod_jk/iis jk_isapi_plugin.c

2002-02-06 Thread larryi
larryi 02/02/06 19:55:37 Modified:src/native/mod_jk/iis jk_isapi_plugin.c Log: Update to use the official JK version string Revision ChangesPath 1.13 +2 -2 jakarta-tomcat/src/native/mod_jk/iis/jk_isapi_plugin.c Index: jk_isapi_plugin.c

cvs commit: jakarta-tomcat/src/tests/webpages/WEB-INF test-tomcat.xml

2002-02-06 Thread larryi
larryi 02/02/06 20:01:07 Modified:src/tests/webpages/WEB-INF test-tomcat.xml Log: Fix tests to pass with forwardAll both true and false with Apache, IIS and Netscape (4.1). Added a test to ensure + is converted to space in query string. Revision ChangesPath 1.51

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/modules/server Ajp13.java

2002-02-06 Thread costin
costin 02/02/06 21:05:54 Modified:src/share/org/apache/tomcat/modules/server Ajp13.java Log: Added the password decoding for ajp13. Revision ChangesPath 1.32 +21 -2 jakarta-tomcat/src/share/org/apache/tomcat/modules/server/Ajp13.java Index: Ajp13.java

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/modules/server Ajp13Interceptor.java

2002-02-06 Thread costin
costin 02/02/06 21:07:36 Modified:src/share/org/apache/tomcat/modules/server Ajp13Interceptor.java Log: Added the logic to check for the password on ajp13 connections. Also cutpaste the logic to generate the 'ajp13.id' if useSecret is set ( with a

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/startup StopTomcat.java

2002-02-06 Thread costin
costin 02/02/06 21:09:36 Modified:src/share/org/apache/tomcat/startup StopTomcat.java Log: Added logic to send the shutdown command using ajp13. That means ajp12 is no longer needed if the password is enabled on ajp13. The ajp13.id is cleaner ( i.e. a properties file ) - it

RE: cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat4 Ajp13Connector.java Ajp13Processor.java

2002-02-06 Thread costinm
On Wed, 6 Feb 2002, Larry Isaacs wrote: Any idea how soon? Done. I hope it doesn't delay any plans, the code shouldn't affect any previous behavior. Costin -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Filters and HttpServletResponse.close();

2002-02-06 Thread Craig R. McClanahan
On Wed, 6 Feb 2002, Glen Nakamura wrote: Date: Wed, 6 Feb 2002 18:59:13 -1000 From: Glen Nakamura [EMAIL PROTECTED] Reply-To: Tomcat Developers List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Filters and HttpServletResponse.close(); Aloha, When does the HttpServletResponse

cvs commit: jakarta-tomcat-4.0/webapps/admin/WEB-INF/classes/org/apache/webapp/admin/realm SetUpUserDBRealmAction.java UserDBRealmAction.java UserDBRealmForm.java

2002-02-06 Thread manveen
manveen 02/02/06 21:06:53 Modified:webapps/admin/WEB-INF struts-config.xml webapps/admin/WEB-INF/classes/org/apache/webapp/admin ApplicationResources_en.properties ApplicationResources_es.properties

cvs commit: jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/buf ByteChunk.java CharChunk.java

2002-02-06 Thread keith
keith 02/02/06 21:37:35 Modified:util/java/org/apache/tomcat/util/buf ByteChunk.java CharChunk.java Log: indexOf should return an index relative to the internal starting point of the string rather than the beginning of the array. Ported over from main

servlet-path, path-info and Filters

2002-02-06 Thread Russ Trotter
Does anyone here know what the official correct handling of ServletRequest.getServletPath() and ServletRequest.getPathInfo() should be? More specifically, if I specify a filter with an url-pattern of /files/* and I make a request to /context/files/foo.jpg, what should getServletPath() and

DO NOT REPLY [Bug 6299] New: - SSI problem with multiple include statements in one file

2002-02-06 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=6299. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.