cvs commit: jakarta-tomcat-connectors/jk/native/common jk_global.h jk_lb_worker.c jk_shm.h jk_status.c

2005-06-14 Thread mturk
mturk 2005/06/13 23:34:13 Modified:jk/native/common jk_global.h jk_lb_worker.c jk_shm.h jk_status.c Log: Use 64 bit unsigned ints instead doubles for transferred/read. Revision ChangesPath 1.50 +4 -1

cvs commit: jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/net AprEndpoint.java

2005-06-14 Thread mturk
mturk 2005/06/13 23:55:20 Modified:util/java/org/apache/tomcat/util/net AprEndpoint.java Log: Use the same locking object for add and maintain. Also make sure that sockets in the add queue are closed on destroy. Revision ChangesPath 1.42 +5 -1

cvs commit: jakarta-tomcat-connectors/jni/native/src poll.c

2005-06-14 Thread mturk
mturk 2005/06/14 00:14:00 Modified:jni/java/org/apache/tomcat/jni Poll.java jni/native/src poll.c Log: Add Poll.pollset method to return all the descriptors that are currently in the Poll. Revision ChangesPath 1.9 +19 -1

DO NOT REPLY [Bug 35351] - Unable to reference nested/inner classes in jsp:useBean tags

2005-06-14 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=35351. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-connectors/jni/native/src poll.c

2005-06-14 Thread mturk
mturk 2005/06/14 00:34:46 Modified:jni/native/src poll.c Log: Skip useless array length compare. Revision ChangesPath 1.20 +6 -8 jakarta-tomcat-connectors/jni/native/src/poll.c Index: poll.c

cvs commit: jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/net AprEndpoint.java

2005-06-14 Thread remm
remm2005/06/14 00:43:29 Modified:util/java/org/apache/tomcat/util/net AprEndpoint.java Log: - Fix typo. Revision ChangesPath 1.43 +1 -1 jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/net/AprEndpoint.java Index: AprEndpoint.java

DO NOT REPLY [Bug 35351] - Unable to reference nested/inner classes in jsp:useBean tags

2005-06-14 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=35351. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/net AprEndpoint.java

2005-06-14 Thread mturk
mturk 2005/06/14 01:23:25 Modified:util/java/org/apache/tomcat/util/net AprEndpoint.java Log: Change the way how maintain is called. There is no need to call the maintain on each TIMEUP. Revision ChangesPath 1.44 +9 -10

Re: Ideas for optimization (Jasper)

2005-06-14 Thread Remy Maucherat
Scott West wrote: Hello all, I'm a student, and I'm taking a very belated stab at the summer of code. Actually, I already submitted one proposal, but I really didn't understand what was expected (apparently google filters the proposals, then they go to the mentoring organizations?).

cvs commit: jakarta-tomcat-connectors/jni/java/org/apache/tomcat/jni Poll.java

2005-06-14 Thread mturk
mturk 2005/06/14 02:02:01 Modified:jni/java/org/apache/tomcat/jni Poll.java Log: Fix copy/paste typo. Poll.pollset does not have remove param. Revision ChangesPath 1.10 +2 -3 jakarta-tomcat-connectors/jni/java/org/apache/tomcat/jni/Poll.java Index:

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_lb_worker.c jk_shm.h jk_status.c

2005-06-14 Thread jean-frederic clere
William A. Rowe, Jr. wrote: Mladen; are you sure you weren't looking for 'long long', al la int64_t? Falling over to the FPU is rarely the best performance decision. A little more coding is needed, because I have a related error (on ReliantUnix): +++ /home/apache20/apache20/build/libtool

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_lb_worker.c jk_shm.h jk_status.c

2005-06-14 Thread Mladen Turk
jean-frederic clere wrote: William A. Rowe, Jr. wrote: Mladen; are you sure you weren't looking for 'long long', al la int64_t? Falling over to the FPU is rarely the best performance decision. A little more coding is needed, because I have a related error (on ReliantUnix): undefined

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_lb_worker.c jk_shm.h jk_status.c

2005-06-14 Thread jean-frederic clere
Mladen Turk wrote: jean-frederic clere wrote: William A. Rowe, Jr. wrote: Mladen; are you sure you weren't looking for 'long long', al la int64_t? Falling over to the FPU is rarely the best performance decision. A little more coding is needed, because I have a related error (on

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_lb_worker.c jk_shm.h jk_status.c

2005-06-14 Thread Mladen Turk
jean-frederic clere wrote: Mladen Turk wrote: Perhaps u_int32_t would be more portable. I would prefer to add in configure something like: +++ AC_CHECK_SIZEOF(char, 1) AC_CHECK_SIZEOF(int, 4) AC_CHECK_SIZEOF(long, 4) AC_CHECK_SIZEOF(short, 2) AC_CHECK_SIZEOF(long long, 8) +++ and testing

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_lb_worker.c jk_shm.h jk_status.c

2005-06-14 Thread jean-frederic clere
Mladen Turk wrote: jean-frederic clere wrote: Mladen Turk wrote: Perhaps u_int32_t would be more portable. I would prefer to add in configure something like: +++ AC_CHECK_SIZEOF(char, 1) AC_CHECK_SIZEOF(int, 4) AC_CHECK_SIZEOF(long, 4) AC_CHECK_SIZEOF(short, 2) AC_CHECK_SIZEOF(long

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_lb_worker.c jk_shm.h jk_status.c

2005-06-14 Thread Mladen Turk
jean-frederic clere wrote: Mladen Turk wrote: Yes, but all that we need is 32 bit unsigned integer for JK_UINT4 What will you use if the int is 64 bits? a long ;-) Right :) You will need the portable.in in that case, right?

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_lb_worker.c jk_shm.h jk_status.c

2005-06-14 Thread jean-frederic clere
Mladen Turk wrote: jean-frederic clere wrote: Mladen Turk wrote: Yes, but all that we need is 32 bit unsigned integer for JK_UINT4 What will you use if the int is 64 bits? a long ;-) Right :) You will need the portable.in in that case, right? Yes and I will ask Henri to check

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_lb_worker.c jk_shm.h jk_status.c

2005-06-14 Thread Henri Gomez
What do you need on iSeries ? 2005/6/14, jean-frederic clere [EMAIL PROTECTED]: Mladen Turk wrote: jean-frederic clere wrote: Mladen Turk wrote: Yes, but all that we need is 32 bit unsigned integer for JK_UINT4 What will you use if the int is 64 bits? a long ;-) Right

cvs commit: jakarta-tomcat-connectors/jni/native/src sslinfo.c

2005-06-14 Thread mturk
mturk 2005/06/14 04:55:54 Modified:jni/java/org/apache/tomcat/jni SSLSocket.java jni/native libtcnative.dsp tcnative.dsp Added: jni/native/src sslinfo.c Log: Add sslinfo.c for obtaining various SSL info data. Revision ChangesPath 1.10 +8 -1

DO NOT REPLY [Bug 35352] - Servlet runs 3x (with the same session) after one GET/POST

2005-06-14 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=35352. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_lb_worker.c jk_shm.h jk_status.c

2005-06-14 Thread jean-frederic clere
Henri Gomez wrote: What do you need on iSeries ? Just to know what to use to have: JK_UINT4 (unsigned long of 32 bits) and JK_UINT8 (unsigned long long of 64 bits) and to check status_strfsize(). 2005/6/14, jean-frederic clere [EMAIL PROTECTED]: Mladen Turk wrote: jean-frederic clere

cvs commit: jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/net AprEndpoint.java

2005-06-14 Thread remm
remm2005/06/14 06:14:19 Modified:util/java/org/apache/tomcat/util/net/res LocalStrings.properties util/java/org/apache/tomcat/util/net AprEndpoint.java Log: - Add status codes on errors. - Close remaining sockets on destroy. Revision

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_lb_worker.c jk_shm.h jk_status.c

2005-06-14 Thread Henri Gomez
status_strfsize ? APR ? 2005/6/14, jean-frederic clere [EMAIL PROTECTED]: Henri Gomez wrote: What do you need on iSeries ? Just to know what to use to have: JK_UINT4 (unsigned long of 32 bits) and JK_UINT8 (unsigned long long of 64 bits) and to check status_strfsize().

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_lb_worker.c jk_shm.h jk_status.c

2005-06-14 Thread jean-frederic clere
Henri Gomez wrote: status_strfsize ? APR ? Nearly: jakarta-tomcat-connectors/jk/native/common/jk_status.c ;-) 2005/6/14, jean-frederic clere [EMAIL PROTECTED]: Henri Gomez wrote: What do you need on iSeries ? Just to know what to use to have: JK_UINT4 (unsigned long of 32 bits) and

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_lb_worker.c jk_shm.h jk_status.c

2005-06-14 Thread Henri Gomez
unsigned long is 32 bits and unsigned long long is 64 bits on iSeries 2005/6/14, Henri Gomez [EMAIL PROTECTED]: status_strfsize ? APR ? 2005/6/14, jean-frederic clere [EMAIL PROTECTED]: Henri Gomez wrote: What do you need on iSeries ? Just to know what to use to have: JK_UINT4

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_lb_worker.c jk_shm.h jk_status.c

2005-06-14 Thread Henri Gomez
ok, but couldn't build now from CVS, but it should works after jk_u64_t is defined as unsigned long long. Since we couldn't use portable.h on iSeries, it should be elsewhere ... 2005/6/14, jean-frederic clere [EMAIL PROTECTED]: Henri Gomez wrote: status_strfsize ? APR ? Nearly:

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_status.c

2005-06-14 Thread jfclere
jfclere 2005/06/14 07:31:24 Modified:jk/native/common jk_status.c Log: Useless comparision of unsigned with zero causes a warning. Revision ChangesPath 1.44 +1 -4 jakarta-tomcat-connectors/jk/native/common/jk_status.c Index: jk_status.c

Re: cvs commit: jakarta-tomcat-connectors/jk/native/common jk_lb_worker.c jk_shm.h jk_status.c

2005-06-14 Thread jean-frederic clere
Henri Gomez wrote: ok, but couldn't build now from CVS, but it should works after jk_u64_t is defined as unsigned long long. Since we couldn't use portable.h on iSeries, it should be elsewhere ... Sure... I will add the need #if defined(AS400). 2005/6/14, jean-frederic clere [EMAIL

DO NOT REPLY [Bug 29485] - Undeploy considered dangerous

2005-06-14 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=29485. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

Regression -- jakarta-tomcat-connectors/jk/native/common jk_uri_worker_map.c

2005-06-14 Thread Derrick Koes
The fix checked into CVS in December has regressed in JK 1.2.14. URL rewriting no longer works with JK 1.2.14. Has anyone else experienced the regression? Thanks, Derrick -Original Message- From: Derrick Koes Sent: Friday, December 17, 2004 3:33 PM To: 'Tomcat Developers List'

cvs commit: jakarta-tomcat-connectors/jk/native/common jk_global.h jk_md5.h

2005-06-14 Thread jfclere
jfclere 2005/06/14 08:44:22 Modified:jk/native configure.in jk/native/common jk_global.h jk_md5.h Log: detect in configure the int32 and int64 (and add if defined(AS400)). Revision ChangesPath 1.47 +20 -1

jsp:include forwarding from included resource, revisited

2005-06-14 Thread Michael Jouravlev
Hi, guys! I am bothering you again with my JSP include/forward/redirect problem. I am not able to comment on JSP53 spec, so I thought that since Tomcat is reference implementation of JSP, then you guys may have some influence on JSP standard. To recap, my problem is that I have a resource,

DO NOT REPLY [Bug 34856] - MacOSX 10.4 and Java 5 jnilibs causes ZipException when Tomcat loads non-jars

2005-06-14 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=34856. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

Regression -- jakarta-tomcat-connectors/jk/native/common jk_uri_worker_map.c

2005-06-14 Thread Derrick Koes
URL rewriting is once again broken. 1.2.14 exhibits the problem for certain. Older version may as well. This was fixed in 1.2.8, but has regressed. Has anyone else noticed the regression? The fix made early this morning (~7-8am Eastern) works to fix the problem I was having with URL

Re: Regression -- jakarta-tomcat-connectors/jk/native/common jk_uri_worker_map.c

2005-06-14 Thread Mladen Turk
Derrick Koes wrote: URL rewriting is once again broken. 1.2.14 exhibits the problem for certain. Older version may as well. This was fixed in 1.2.8, but has regressed. Has anyone else noticed the regression? Could you explain what do you mean by 'regression', and URL rewriting? If you

Re: Re: Regression -- jakarta-tomcat-connectors/jk/native/common jk_uri_worker_map.c

2005-06-14 Thread info
ESTE MENSAJE ES UNA RESPUESTA AUTOMATICA. Estimad@ amig@, Por favor lee detenidamente la informacin que detallamos a continuacin ya que puede contener la respuesta a tu peticin. Aquellos emails que necesiten una respuesta personalizada se intentarn contestar lo antes posible. Todos los que

Re: Re: Regression -- jakarta-tomcat-connectors/jk/native/common jk_uri_worker_map.c

2005-06-14 Thread info
ESTE MENSAJE ES UNA RESPUESTA AUTOMATICA. Estimad@ amig@, Por favor lee detenidamente la informacin que detallamos a continuacin ya que puede contener la respuesta a tu peticin. Aquellos emails que necesiten una respuesta personalizada se intentarn contestar lo antes posible. Todos los que

Sun One/iPlanet nsapi_redirector issue

2005-06-14 Thread Kevin Convy \(Contractor\)
I am having an issue posting a large request (that also requires authentication) through a Sun One/IPlanet 6.0sp5 webserver to Tomcat 5.5 using the 1.2.8 nsapi_redirector. The client that is doing the posting gets a server write error if the request body is over a certain size (~150K). The issue

cvs commit: jakarta-tomcat-connectors/jni/java/org/apache/tomcat/jni SSLSocket.java

2005-06-14 Thread jfclere
jfclere 2005/06/14 13:59:33 Modified:jni/java/org/apache/tomcat/jni SSLSocket.java Log: typo. Revision ChangesPath 1.11 +2 -2 jakarta-tomcat-connectors/jni/java/org/apache/tomcat/jni/SSLSocket.java Index: SSLSocket.java

Re: cvs commit: jakarta-tomcat-connectors/jni/java/org/apache/tomcat/jni SSLSocket.java

2005-06-14 Thread info
ESTE MENSAJE ES UNA RESPUESTA AUTOMATICA. Estimad@ amig@, Por favor lee detenidamente la informacin que detallamos a continuacin ya que puede contener la respuesta a tu peticin. Aquellos emails que necesiten una respuesta personalizada se intentarn contestar lo antes posible. Todos los que

Re: cvs commit: jakarta-tomcat-connectors/jni/java/org/apache/tomcat/jni SSLSocket.java

2005-06-14 Thread info
ESTE MENSAJE ES UNA RESPUESTA AUTOMATICA. Estimad@ amig@, Por favor lee detenidamente la informacin que detallamos a continuacin ya que puede contener la respuesta a tu peticin. Aquellos emails que necesiten una respuesta personalizada se intentarn contestar lo antes posible. Todos los que

Re: Re: cvs commit: jakarta-tomcat-connectors/jni/java/org/apache/tomcat/jni SSLSocket.java

2005-06-14 Thread info
ESTE MENSAJE ES UNA RESPUESTA AUTOMATICA. Estimad@ amig@, Por favor lee detenidamente la informacin que detallamos a continuacin ya que puede contener la respuesta a tu peticin. Aquellos emails que necesiten una respuesta personalizada se intentarn contestar lo antes posible. Todos los que

DO NOT REPLY [Bug 35352] - Servlet runs 3x (with the same session) after one GET/POST

2005-06-14 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=35352. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

Re: Re: cvs commit: jakarta-tomcat-connectors/jni/java/org/apache/tomcat/jni SSLSocket.java

2005-06-14 Thread info
ESTE MENSAJE ES UNA RESPUESTA AUTOMATICA. Estimad@ amig@, Por favor lee detenidamente la informacin que detallamos a continuacin ya que puede contener la respuesta a tu peticin. Aquellos emails que necesiten una respuesta personalizada se intentarn contestar lo antes posible. Todos los que

DO NOT REPLY [Bug 34856] - MacOSX 10.4 and Java 5 jnilibs causes ZipException when Tomcat loads non-jars

2005-06-14 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=34856. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 23344] - catalina.properties don't allow to add one jar file

2005-06-14 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=23344. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 23344] - catalina.properties don't allow to add one jar file

2005-06-14 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=23344. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 23344] - catalina.properties don't allow to add one jar file

2005-06-14 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=23344. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 23344] - catalina.properties don't allow to add one jar file

2005-06-14 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=23344. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 23344] - catalina.properties don't allow to add one jar file [T200506150030]

2005-06-14 Thread business
Dear tomcat-dev@jakarta.apache.org, Thanks for writing to Webshots! We received your message on 6/14/2005. Your tracking number for this message is : T200506150030 ** IMPORTANT: PLEASE DO NOT REPLY TO THIS EMAIL! ** This is an automatic response to let you know that your Webshots Corporate