DO NOT REPLY [Bug 41008] - POST request ignores command line parameters

2006-11-24 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=41008. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

svn commit: r478804 - /tomcat/connectors/trunk/jk/native/common/jk_ajp_common.c

2006-11-24 Thread mturk
Author: mturk Date: Fri Nov 24 00:48:34 2006 New Revision: 478804 URL: http://svn.apache.org/viewvc?view=revrev=478804 Log: Handle cping/cpong in case of reconnect if the connect_timeout was set. This makes reconnects to behave like normal connects. Modified:

svn commit: r478809 - /tomcat/connectors/trunk/jk/native/common/jk_lb_worker.c

2006-11-24 Thread mturk
Author: mturk Date: Fri Nov 24 01:00:12 2006 New Revision: 478809 URL: http://svn.apache.org/viewvc?view=revrev=478809 Log: Setup domain name from route name if the route name contains dot ('.'). The first part before dot will be used as domain name. This eases the domain sticky session

svn commit: r478810 - /tomcat/connectors/trunk/jk/native/common/jk_lb_worker.c

2006-11-24 Thread mturk
Author: mturk Date: Fri Nov 24 01:04:06 2006 New Revision: 478810 URL: http://svn.apache.org/viewvc?view=revrev=478810 Log: remove extra debug loop Modified: tomcat/connectors/trunk/jk/native/common/jk_lb_worker.c Modified: tomcat/connectors/trunk/jk/native/common/jk_lb_worker.c URL:

DO NOT REPLY [Bug 41008] - POST request ignores command line parameters

2006-11-24 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=41008. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 41034] New: - Classloader leak caused by request recycle

2006-11-24 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=41034. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 41034] - Classloader leak caused by request recycle

2006-11-24 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=41034. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 40719] - Tomcat 5.5.20 Internal error/crash

2006-11-24 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=40719. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

Re: svn commit: r478809 - /tomcat/connectors/trunk/jk/native/common/jk_lb_worker.c

2006-11-24 Thread Rainer Jung
Hi Mladen, very nice idea making things easier for users. I like it. But dots are standard separation characters in host names and host names might not be totally uncommon as jvm routes. I know, that they can be symbolic, but we might break configs or deny using such a simple way of matching

Re: State of affairs for mod_jk 1.2.20

2006-11-24 Thread Rainer Jung
Hi Mladen, Mladen Turk schrieb: Rainer Jung wrote: For those who want to test: I committed far the most part of what I planned to improve. Thanks Rainer, the patches you made are really great! I think we'll have a best ever mod_jk. Thanks for the credits, I hope they work. However I

Re: svn commit: r478809 - /tomcat/connectors/trunk/jk/native/common/jk_lb_worker.c

2006-11-24 Thread Mladen Turk
Rainer Jung wrote: Hi Mladen, very nice idea making things easier for users. I like it. But dots are standard separation characters in host names and host names might not be totally uncommon as jvm routes. I know, that they can be symbolic, but we might break configs or deny using such a simple

Re: State of affairs for mod_jk 1.2.20

2006-11-24 Thread Rainer Jung
Hi Mladen, I read our code as follows: in any case where a function in the while loop does produce an error, we close the connection afterwards: - if jk_is_socket_connected() fails, we do it explicitely via jk_close_socket() - if ajp_handle_cping_cpong() fails, we don't go into

Re: svn commit: r478809 - /tomcat/connectors/trunk/jk/native/common/jk_lb_worker.c

2006-11-24 Thread Rainer Jung
Gotcha. OK. Mladen Turk schrieb: Rainer Jung wrote: Hi Mladen, very nice idea making things easier for users. I like it. But dots are standard separation characters in host names and host names might not be totally uncommon as jvm routes. I know, that they can be symbolic, but we might

Re: State of affairs for mod_jk 1.2.20

2006-11-24 Thread Mladen Turk
Rainer Jung wrote: In my opinion the only change is: - old code: retries=2 means first try to close all conns and second try with new connection - new code: retries=2 means first try to close all conns and immediate new conn, second try a real retry. Right, and that is the problem. With

svn commit: r479010 - /tomcat/container/tc5.5.x/webapps/admin/WEB-INF/classes/org/apache/webapp/admin/valve/

2006-11-24 Thread markt
Author: markt Date: Fri Nov 24 13:46:09 2006 New Revision: 479010 URL: http://svn.apache.org/viewvc?view=revrev=479010 Log: Code clean up. Modified: tomcat/container/tc5.5.x/webapps/admin/WEB-INF/classes/org/apache/webapp/admin/valve/AccessLogValveForm.java

AJP Connector enableLookups

2006-11-24 Thread Fisher, Mitchell L
I have a question about the behavior of the Tomcat AJP Connector. When my mod_jk equivalent sends the remote host name in AJP, the servlet's call to getRemoteHost() returns the IP address if enableLookups is set false in the connector, and returns the remote host supplied by the front-end server

Re: State of affairs for mod_jk 1.2.20

2006-11-24 Thread Rainer Jung
OK, convinced. I'll change that tomorrow and add a respective note to the docs fpr ajp retries in relation to lb. Mladen Turk schrieb: Rainer Jung wrote: In my opinion the only change is: - old code: retries=2 means first try to close all conns and second try with new connection - new

svn commit: r479033 - in /tomcat/container/tc5.5.x/webapps/admin/WEB-INF/classes/org/apache/webapp/admin/context: AddContextAction.java ContextForm.java DeleteContextAction.java DeleteContextsAction.j

2006-11-24 Thread markt
Author: markt Date: Fri Nov 24 15:00:06 2006 New Revision: 479033 URL: http://svn.apache.org/viewvc?view=revrev=479033 Log: Code clean-up thanks to Eclipse for o.a.webapp.admin.context - remove unused code - removed unused imports - don't use deprecated methods Modified:

svn commit: r479035 - /tomcat/container/tc5.5.x/webapps/admin/WEB-INF/classes/org/apache/webapp/admin/host/

2006-11-24 Thread markt
Author: markt Date: Fri Nov 24 15:00:53 2006 New Revision: 479035 URL: http://svn.apache.org/viewvc?view=revrev=479035 Log: Code clean-up thanks to Eclipse for o.a.webapp.admin.host - remove unused code - removed unused imports - don't use deprecated methods No functional change Modified:

svn commit: r479037 - /tomcat/container/tc5.5.x/webapps/admin/WEB-INF/classes/org/apache/webapp/admin/realm/

2006-11-24 Thread markt
Author: markt Date: Fri Nov 24 15:01:05 2006 New Revision: 479037 URL: http://svn.apache.org/viewvc?view=revrev=479037 Log: Code clean-up thanks to Eclipse for o.a.webapp.admin.realm - remove unused code - removed unused imports - don't use deprecated methods No functional change Modified:

svn commit: r479039 - in /tomcat/container/tc5.5.x/webapps/admin/WEB-INF/classes/org/apache/webapp/admin/service: AddServiceAction.java DeleteServiceAction.java DeleteServicesAction.java EditServiceAc

2006-11-24 Thread markt
Author: markt Date: Fri Nov 24 15:01:49 2006 New Revision: 479039 URL: http://svn.apache.org/viewvc?view=revrev=479039 Log: Code clean-up thanks to Eclipse for o.a.webapp.admin.service - remove unused code - removed unused imports - don't use deprecated methods No functional change Modified:

svn commit: r479041 - /tomcat/container/tc5.5.x/webapps/admin/WEB-INF/classes/org/apache/webapp/admin/users/

2006-11-24 Thread markt
Author: markt Date: Fri Nov 24 15:02:20 2006 New Revision: 479041 URL: http://svn.apache.org/viewvc?view=revrev=479041 Log: Code clean-up thanks to Eclipse for o.a.webapp.admin.users - remove unused code - removed unused imports - don't use deprecated methods No functional change Modified:

svn commit: r479042 - in /tomcat/container/tc5.5.x/webapps/admin/WEB-INF/classes/org/apache/webapp/admin/server: EditServerAction.java SaveServerAction.java ServerForm.java

2006-11-24 Thread markt
Author: markt Date: Fri Nov 24 15:02:41 2006 New Revision: 479042 URL: http://svn.apache.org/viewvc?view=revrev=479042 Log: Code clean-up thanks to Eclipse for o.a.webapp.admin.server - remove unused code - removed unused imports - don't use deprecated methods No functional change Modified:

svn commit: r479043 - /tomcat/container/tc5.5.x/webapps/admin/WEB-INF/classes/org/apache/webapp/admin/

2006-11-24 Thread markt
Author: markt Date: Fri Nov 24 15:03:05 2006 New Revision: 479043 URL: http://svn.apache.org/viewvc?view=revrev=479043 Log: Code clean-up thanks to Eclipse for o.a.webapp.admin - remove unused code - removed unused imports - don't use deprecated methods No functional change Modified:

Re: svn commit: r478804 - /tomcat/connectors/trunk/jk/native/common/jk_ajp_common.c

2006-11-24 Thread Rainer Jung
Hi Mladen, [EMAIL PROTECTED] schrieb: @@ -1220,12 +1220,25 @@ ... /* Connect to the backend. * This can be either uninitalized connection or a reconnect. */ if (ajp_connect_to_endpoint(ae, l) == JK_TRUE) { +/* should we send a CPING to

svn commit: r479045 - /tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Validator.java

2006-11-24 Thread markt
Author: markt Date: Fri Nov 24 15:11:19 2006 New Revision: 479045 URL: http://svn.apache.org/viewvc?view=revrev=479045 Log: Code clean up. No functional change. Modified: tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Validator.java Modified:

svn commit: r479047 [1/2] - /tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Validator.java

2006-11-24 Thread markt
Author: markt Date: Fri Nov 24 15:14:50 2006 New Revision: 479047 URL: http://svn.apache.org/viewvc?view=revrev=479047 Log: tabs - 8 spaces Modified: tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Validator.java

Re: recovery_option 4 not fully implemented

2006-11-24 Thread Rainer Jung
Tim Whittington schrieb: The JK docs state: If the value 4 is added to the recovery options, the connection between the webserver and tomcat will be closed if the client connection to the webserver is terminated during the request/response cycle. This allows to inform the servlet engine

svn commit: r479051 - in /tomcat/container/tc5.5.x: catalina/src/share/org/apache/catalina/servlets/CGIServlet.java webapps/docs/changelog.xml

2006-11-24 Thread markt
Author: markt Date: Fri Nov 24 15:52:35 2006 New Revision: 479051 URL: http://svn.apache.org/viewvc?view=revrev=479051 Log: Fix bug 41008. Enable POST to be used with indexed queries. Patch provided by Chris Halstead. Modified:

svn commit: r479052 - in /tomcat/tc6.0.x/trunk: java/org/apache/catalina/servlets/CGIServlet.java webapps/docs/changelog.xml

2006-11-24 Thread markt
Author: markt Date: Fri Nov 24 15:58:18 2006 New Revision: 479052 URL: http://svn.apache.org/viewvc?view=revrev=479052 Log: Port fix bug 41008. Enable POST to be used with indexed queries. Patch provided by Chris Halstead. Modified:

DO NOT REPLY [Bug 41008] - POST request ignores command line parameters

2006-11-24 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=41008. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 40719] - Tomcat 5.5.20 Internal error/crash

2006-11-24 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=40719. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

svn commit: r479057 - in /tomcat/container/tc5.5.x/webapps/docs: changelog.xml ssl-howto.xml

2006-11-24 Thread markt
Author: markt Date: Fri Nov 24 16:25:46 2006 New Revision: 479057 URL: http://svn.apache.org/viewvc?view=revrev=479057 Log: Update SSL docs to include PKCS11 that users have successfully used. Modified: tomcat/container/tc5.5.x/webapps/docs/changelog.xml

svn commit: r479059 - in /tomcat/tc6.0.x/trunk/webapps/docs: changelog.xml ssl-howto.xml

2006-11-24 Thread markt
Author: markt Date: Fri Nov 24 16:29:25 2006 New Revision: 479059 URL: http://svn.apache.org/viewvc?view=revrev=479059 Log: Port update to SSL docs to include PKCS11 that users have successfully used. Modified: tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml

DO NOT REPLY [Bug 40677] - PKCS11 keystore instead of JKS or PKCS12 keystore

2006-11-24 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=40677. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.