Re: [5.0] content-type and charset issues

2003-11-13 Thread Remy Maucherat
Kazuhiro Kazama wrote: Remy, Tomcat 5.0 always adds a charset=ISO-8859-1 to the content type. While this is I think relatively legal, it is rather risky (it causes problems with some clients, as I've read on tomcat-user), and very dubious when dealing with non text data. I received the report

Where do we find the tomcat changelog?

2003-11-13 Thread Jost Boekemeier
[#7912] It seems that tomcat does not maintain a changelog (I've looked at http://cvs.apache.org/viewcvs/jakarta-tomcat-4.0/?only_with_tag=TOMCAT_4_1_9 but could not find any). Which change between Release 4_1_9 and 4_1_7 could cause that an incorrect mime type is send back to the client? We

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

2003-11-13 Thread remm
remm2003/11/13 00:29:33 Modified:catalina/src/share/org/apache/catalina/core StandardPipeline.java Log: - Fix unregistration of valves on stop (the objectname should be reset so that the valve is registered again). Revision ChangesPath

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

2003-11-13 Thread remm
remm2003/11/13 00:30:35 Modified:catalina/src/share/org/apache/catalina/core StandardContext.java Log: - Fix registration of the root context through JMX (basically, it's the usual / - conversion for the path). Revision ChangesPath 1.99

cvs commit: jakarta-tomcat-5/resources/mbeans tomcat5-ant.xml

2003-11-13 Thread remm
remm2003/11/13 00:31:51 Modified:resources/mbeans tomcat5-ant.xml Log: - Fix the webapps docbase (I wonder if the currently release package runs ...), which was using my Tomcat build directory behind my back. Revision ChangesPath 1.15 +2 -2

cvs commit: jakarta-tomcat-5 build.xml

2003-11-13 Thread remm
remm2003/11/13 00:33:44 Modified:.build.xml Log: - Include the manager in the embed package. Revision ChangesPath 1.167 +6 -3 jakarta-tomcat-5/build.xml Index: build.xml === RCS

cvs commit: jakarta-tomcat-5/resources/mbeans tomcat5-ant.xml

2003-11-13 Thread remm
remm2003/11/13 00:45:48 Modified:resources/mbeans tomcat5-ant.xml Log: - More cleanup. Revision ChangesPath 1.16 +8 -133jakarta-tomcat-5/resources/mbeans/tomcat5-ant.xml Index: tomcat5-ant.xml

Re: Need Consulting

2003-11-13 Thread jean-frederic clere
Jeff Rogers wrote: Hello, I hate to post this to the dev list, but we need consulting help. I have no idea where to look for reputable Tomcat consulting. We are at our wits end and ready to make the jump to commercial software due to a signal 11 crashing problem with our Tomcat servers.

Re: [VOTE] Kurt Miller as commiter

2003-11-13 Thread Henri Gomez
jean-frederic clere a écrit : Henri Gomez wrote: Hi to all, I would like to propose you a new tomcat commiter, Kurt Miller which as proposed many usefull patches for JK2 Since we want to deprecated jk and focus jk2, we need more people involved on jk2. Vote please. Ok, it seems that nobody

nsapi_redirector.so for SunOne6.1 and Tomcat4.1.27

2003-11-13 Thread Hruday Kamble
Hello, Can any one point me in direction from where I can down load nsapi_redirector.so for configuring SunOne6.1 with tomcat 4.1.27. OR how to create own nsapi_redirector.so. In my case, both SunOne and Tomcat are running on Solaris 8. Thanks Hruday

Re: [VOTE] Kurt Miller as commiter

2003-11-13 Thread Kurt Miller
From: Henri Gomez [EMAIL PROTECTED] jean-frederic clere a écrit : Henri Gomez wrote: Hi to all, I would like to propose you a new tomcat commiter, Kurt Miller which as proposed many usefull patches for JK2 Since we want to deprecated jk and focus jk2, we need more people

[5.0] Getting some defaults from system properties

2003-11-13 Thread Remy Maucherat
Hi, This is a little similar to the Ant-like properties for server.xml. The problem: the allowLinking and caseSensitivity flags of FileDirContext, which can be set per context using the Resources element, but it's kind of annoying to do it server wide. All defaults for flags (and others) are

RE: [5.0] Getting some defaults from system properties

2003-11-13 Thread Shapira, Yoav
Howdy, Seems like a reasonable increase in configuration flexibility without introducing backwards compatibility issues nor user confusion. +1. Yoav Shapira Millennium ChemInformatics -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED] Sent: Thursday, November 13, 2003

Re: [5.0] Getting some defaults from system properties

2003-11-13 Thread Glenn Nielsen
Couldn't these be set using the DefaultContext? Regards, Glenn Remy Maucherat wrote: Hi, This is a little similar to the Ant-like properties for server.xml. The problem: the allowLinking and caseSensitivity flags of FileDirContext, which can be set per context using the Resources element,

Re: [5.0] Getting some defaults from system properties

2003-11-13 Thread Remy Maucherat
Glenn Nielsen wrote: Couldn't these be set using the DefaultContext? Why not ? It seems like a better fit. Remy - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

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

2003-11-13 Thread remm
remm2003/11/13 08:37:06 Modified:catalina/src/share/org/apache/catalina/startup CatalinaProperties.java Log: - Convinience feature: set as system property everything in that file. - This could work well along with the property replacement to be added in

Tomcat 5.0.14 and JK loadbalancing

2003-11-13 Thread Dave Oxley
I have 4 load balanced JK (1.2.5) workers. When I select to stop Tomcat (5.0.14), which takes a while to shut down (because of some daemon threads in our app) a 400 bad request is returned to the browser even though there are other JK workers that could be used. A couple of causes spring to

Re: [5.0] Getting some defaults from system properties

2003-11-13 Thread Glenn Nielsen
Remy Maucherat wrote: Glenn Nielsen wrote: Couldn't these be set using the DefaultContext? Why not ? It seems like a better fit. In what way? Having one method to configure defaults for Context's seems better than having multiple methods. And keeping the configuration of these in server.xml

Re: Need Consulting

2003-11-13 Thread jean-frederic clere
Clere, Jean-Frederic wrote: Jeff Rogers wrote: Hello, I hate to post this to the dev list, but we need consulting help. I have no idea where to look for reputable Tomcat consulting. We are at our wits end and ready to make the jump to commercial software due to a signal 11 crashing problem

Re: [5.0] Getting some defaults from system properties

2003-11-13 Thread Remy Maucherat
Glenn Nielsen wrote: Remy Maucherat wrote: Glenn Nielsen wrote: Couldn't these be set using the DefaultContext? Why not ? It seems like a better fit. In what way? Your way. Remy - To unsubscribe, e-mail: [EMAIL PROTECTED] For

cvs commit: jakarta-tomcat-connectors/jk/native2/server/dsapi - New directory

2003-11-13 Thread andya
andya 2003/11/13 09:09:24 jakarta-tomcat-connectors/jk/native2/server/dsapi - New directory - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

cvs commit: jakarta-tomcat-connectors/jk/native2/server/dsapi/test - New directory

2003-11-13 Thread andya
andya 2003/11/13 09:11:08 jakarta-tomcat-connectors/jk/native2/server/dsapi/test - New directory - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

cvs commit: jakarta-tomcat-connectors/jk/native2/server/dsapi/test test.dsp test.c printf_logger.c

2003-11-13 Thread andya
andya 2003/11/13 09:11:36 Added: jk/native2/server/dsapi/test test.dsp test.c printf_logger.c Log: First release of JK2 Domino redirector. Barely tested. Revision ChangesPath 1.1 jakarta-tomcat-connectors/jk/native2/server/dsapi/test/test.dsp

Re: Need Consulting

2003-11-13 Thread Peter Lin
as someone else mentioned, these types of seg fault errors have been the result of database drivers in the past. Specifically, using native drivers. I am aware of this type of behavior occuring with other drivers like JMS that wrap native code. Make sure your database driver isn't the cause.

Re: [VOTE] Kurt Miller as commiter

2003-11-13 Thread Filip Hanik
[+1], yes more people on jk2 - Original Message - From: Kurt Miller [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Sent: Thursday, November 13, 2003 4:30 AM Subject: Re: [VOTE] Kurt Miller as commiter From: Henri Gomez [EMAIL PROTECTED] jean-frederic clere a écrit :

DO NOT REPLY [Bug 23802] - Bug Workaround: Custom 401 error page fails WWW-Authenticate header

2003-11-13 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=23802. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 24687] New: - Startup Fails

2003-11-13 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=24687. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 24687] - Startup Fails

2003-11-13 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=24687. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: [5.0] Getting some defaults from system properties

2003-11-13 Thread Glenn Nielsen
Oops, I misread your reply. :-) Glenn Remy Maucherat wrote: Glenn Nielsen wrote: Remy Maucherat wrote: Glenn Nielsen wrote: Couldn't these be set using the DefaultContext? Why not ? It seems like a better fit. In what way?

DO NOT REPLY [Bug 24687] - Startup Fails

2003-11-13 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=24687. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote RequestInfo.java

2003-11-13 Thread amyroh
amyroh 2003/11/13 12:03:33 Modified:coyote/src/java/org/apache/coyote RequestInfo.java Log: Add getter for RequestInfo.globalProcessor - it was returning AttributeNotFoundException because of missing getter. Revision ChangesPath 1.6 +4 -0

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core mbeans-descriptors.xml StandardContext.java StandardDefaultContext.java

2003-11-13 Thread remm
remm2003/11/13 13:03:14 Modified:catalina/src/share/org/apache/catalina/core mbeans-descriptors.xml StandardContext.java StandardDefaultContext.java Log: - Add fields to control the resources, as well as set them globally using

DO NOT REPLY [Bug 24690] New: - jk 1.2.5 doesn't even compile on linux

2003-11-13 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=24690. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/session PersistentManagerBase.java

2003-11-13 Thread jfarcand
jfarcand2003/11/13 14:56:27 Modified:catalina/src/share/org/apache/catalina/session PersistentManagerBase.java Log: Return the object instead of a null. Throw the proper exception. Cut/Paste should not exists Revision ChangesPath 1.12

DO NOT REPLY [Bug 24006] - PROPPATCH vs Allow header

2003-11-13 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=24006. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 24006] - PROPPATCH vs Allow header

2003-11-13 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=24006. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.