cvs commit: jakarta-tomcat-5 build.xml

2005-09-29 Thread costin
costin 2005/09/29 08:28:20 Modified:.build.xml Log: Added the target to build coyote standalone. ( there are missing files - the j-t-c/mini directory in particular - don't try to build until after svn transition, or whenever the rest of the files land ) This is 200K,

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

2005-09-29 Thread costin
costin 2005/09/29 07:36:25 Modified:catalina/src/share/org/apache/catalina/startup CatalinaProperties.java Log: Busted by the tab police, fixed the settings. Revision ChangesPath 1.10 +4 -4 jakarta-tomcat-catalina/catalina/src/share/org

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

2005-09-28 Thread Bill Barker
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 28, 2005 10:52 PM Subject: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup Catalina.java CatalinaProperties.java ContextConfig.java E

cvs commit: jakarta-tomcat-connectors/util/loader/org/apache/tomcat/util/loader Loader.java Module.java ModuleClassLoader.java ModuleListener.java Repository.java package.html LoaderProperties.java

2005-09-28 Thread costin
costin 2005/09/28 23:35:48 Modified:util/loader/org/apache/tomcat/util/loader Loader.java Module.java ModuleClassLoader.java ModuleListener.java Repository.java package.html Removed: util/loader/org/apache/tomcat/util/loader

cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote ActionHook.java ActionCode.java Adapter.java InputBuffer.java OutputBuffer.java Processor.java ProtocolHandler.java Request.java

2005-09-28 Thread costin
costin 2005/09/28 23:27:50 Modified:coyote/src/java/org/apache/coyote ActionHook.java ActionCode.java Adapter.java InputBuffer.java OutputBuffer.java Processor.java ProtocolHandler.java Request.java Log: Just a

Re: cvs commit: jakarta-tomcat-5 build.xml

2005-09-28 Thread Costin Manolache
BTW - there are still few files missing, but the end result is a 1.2M jar containing all deps, that can be run with "java -jar" and only requires a webapps/ dir in the current dir. Costin [EMAIL PROTECTED] wrote: costin 2005/09/28 23:07:24 Modified:.build.xml Log: Add

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/loader WebappClassLoader.java

2005-09-28 Thread Costin Manolache
Remy Maucherat wrote: Jan Luehe wrote: As a reminder, CVS shound't be used anymore. I commited a bunch of small changes, don't know how easy it'll be to get them in after the switch to svn. Let me know if there's a problem, I can roll them back. BTW - I had some of the changes in Introspec

cvs commit: jakarta-tomcat-5 build.xml

2005-09-28 Thread costin
costin 2005/09/28 23:07:24 Modified:.build.xml Log: Add a target to build the standalone jar - in case anyone wants to play with it. Revision ChangesPath 1.239 +87 -1 jakarta-tomcat-5/build.xml Index: build.xml

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

2005-09-28 Thread costin
costin 2005/09/28 22:55:15 Modified:catalina/src/share/org/apache/catalina/core AprLifecycleListener.java catalina/src/share/org/apache/catalina/startup Bootstrap.java WebRuleSet.java catalina/src/share/org/ap

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

2005-09-28 Thread costin
costin 2005/09/28 22:52:49 Modified:catalina/src/share/org/apache/catalina/startup Catalina.java CatalinaProperties.java ContextConfig.java Embedded.java Log: Another small commit dealing with the 'single-jar'/minimal case, where we d

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/loader WebappClassLoader.java

2005-09-28 Thread Remy Maucherat
Jan Luehe wrote: No, I did. Cool, there's one, at least :) Yes, but with lazy resolution, it will be loaded when the IntrospectionUtils symbol is first encountered, which may be inside WebappClassLoader.stop(). Normally, it's used by plenty of things, like the digester. Who knows anyway, I

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/loader WebappClassLoader.java

2005-09-28 Thread Jan Luehe
Remy, Remy Maucherat wrote On 09/28/05 10:18,: > Jan Luehe wrote: > >>We have seen the ThreadDeath in our callstacks, hence this fix. > > > Nobody is reading what I am writing anymore ... No, I did. > I wrote: > The static initializer is called when loading the class, and obviously > the web

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/loader WebappClassLoader.java

2005-09-28 Thread Remy Maucherat
Jan Luehe wrote: We have seen the ThreadDeath in our callstacks, hence this fix. Nobody is reading what I am writing anymore ... I wrote: The static initializer is called when loading the class, and obviously the webapp CL is not going to load IntrospectionUtils. IntrospectionUtils will be

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/loader WebappClassLoader.java

2005-09-28 Thread Jan Luehe
Remy, Remy Maucherat wrote On 09/28/05 03:12,: > [EMAIL PROTECTED] wrote: > >> +/* >> + * Clear the IntrospectionUtils cache. >> + * >> + * Implementation note: >> + * Any reference to IntrospectionUtils which may cause the static >> + * inita

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/loader WebappClassLoader.java

2005-09-28 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: +/* + * Clear the IntrospectionUtils cache. + * + * Implementation note: + * Any reference to IntrospectionUtils which may cause the static + * initalizer of that class to be invoked must occur prior to setting

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/loader WebappClassLoader.java

2005-09-27 Thread jfarcand
jfarcand2005/09/27 16:42:53 Modified:catalina/src/share/org/apache/catalina/loader WebappClassLoader.java Log: Port fix from SJSAS. Patch submitted by: Jan Luehe Revision ChangesPath 1.51 +16 -3 jakarta-tomcat-catalina/catalina/src/s

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

2005-09-27 Thread jfarcand
jfarcand2005/09/27 12:20:54 Modified:catalina/src/share/org/apache/catalina/core StandardHostValve.java Log: Minor fix. Use the the class instead of the String. Revision ChangesPath 1.27 +2 -2 jakarta-tomcat-catalina/catalina/src/share/o

cvs commit: jakarta-tomcat-catalina/webapps/docs/config realm.xml

2005-09-26 Thread markt
markt 2005/09/26 13:54:10 Modified:webapps/docs/config realm.xml Log: Document missing alternateURL attribute Revision ChangesPath 1.8 +6 -0 jakarta-tomcat-catalina/webapps/docs/config/realm.xml Index: realm.xml

cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml

2005-09-24 Thread billbarker
billbarker2005/09/24 19:16:42 Modified:webapps/docs changelog.xml Log: Update to 5.5.13, and doc changes Revision ChangesPath 1.380 +36 -0 jakarta-tomcat-catalina/webapps/docs/changelog.xml Index: changelog.xml ==

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

2005-09-24 Thread billbarker
billbarker2005/09/24 17:27:53 Modified:catalina/src/share/org/apache/catalina/core StandardContext.java Log: Fix problem of double-init when JMX-deploying a Context into a started Host. It doesn't seem possible to stop init being called twice in this scen

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

2005-09-24 Thread billbarker
billbarker2005/09/24 16:53:23 Modified:jk/java/org/apache/jk/common ChannelNioSocket.java ChannelSocket.java Log: Gracefully handle the case where some Socket options are disabled at the OS level. For reasons known only to Sun, Socket.setSoLinger actuall

cvs commit: jakarta-tomcat-5 tomcat.nsi

2005-09-23 Thread yoavs
yoavs 2005/09/23 06:40:26 Modified:.tomcat.nsi Log: ${catalina.base} is not recognized by NSIS, $INSTDIR seems like the right fix. Revision ChangesPath 1.84 +2 -2 jakarta-tomcat-5/tomcat.nsi Index: tomcat.nsi

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

2005-09-23 Thread mturk
mturk 2005/09/23 04:51:51 Modified:jk/native/common jk_version.h Log: Bump to 1.2.16-dev verion. We are ready for SVN transition. Revision ChangesPath 1.47 +4 -4 jakarta-tomcat-connectors/jk/native/common/jk_version.h Index: jk_version.h =

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

2005-09-23 Thread mturk
mturk 2005/09/23 04:49:04 Modified:jk/native/common jk_connect.h Log: Fix compile time warning Revision ChangesPath 1.17 +2 -2 jakarta-tomcat-connectors/jk/native/common/jk_connect.h Index: jk_connect.h ==

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

2005-09-23 Thread mturk
mturk 2005/09/23 04:44:44 Modified:jk/native/common jk_version.h Log: Bump the release version Revision ChangesPath 1.46 +2 -2 jakarta-tomcat-connectors/jk/native/common/jk_version.h Index: jk_version.h ==

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

2005-09-23 Thread mturk
mturk 2005/09/23 00:57:28 Modified:jk/native/common jk_status.c Log: Added cmd=reset status command without web interface that will reset all workers in selected load balancer and reset their runtime data. This is usefull for cron jobs to skip the need to cold restart apache.

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

2005-09-23 Thread mturk
mturk 2005/09/23 00:32:24 Modified:jk/native/common jk_lb_worker.c Log: Fix compile time warnings. No functional change. Revision ChangesPath 1.96 +4 -4 jakarta-tomcat-connectors/jk/native/common/jk_lb_worker.c Index: jk_lb_worker.c

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

2005-09-23 Thread customerservice
Hi, we have received your request and will contact you as soon as possible. Thank you. The Dreamsailing Staff www.dreamsailing.it [EMAIL PROTECTED] --- DreamSailing s.r.l. Gruppo Metauro Mare - Milano Corso di Porta Romana, 101 - 20122 Milano Tel. +39 02

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

2005-09-23 Thread customerservice
Hi, we have received your request and will contact you as soon as possible. Thank you. The Dreamsailing Staff www.dreamsailing.it [EMAIL PROTECTED] --- DreamSailing s.r.l. Gruppo Metauro Mare - Milano Corso di Porta Romana, 101 - 20122 Milano Tel. +39 02

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

2005-09-23 Thread customerservice
Hi, we have received your request and will contact you as soon as possible. Thank you. The Dreamsailing Staff www.dreamsailing.it [EMAIL PROTECTED] --- DreamSailing s.r.l. Gruppo Metauro Mare - Milano Corso di Porta Romana, 101 - 20122 Milano Tel. +39 02

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

2005-09-23 Thread customerservice
Hi, we have received your request and will contact you as soon as possible. Thank you. The Dreamsailing Staff www.dreamsailing.it [EMAIL PROTECTED] --- DreamSailing s.r.l. Gruppo Metauro Mare - Milano Corso di Porta Romana, 101 - 20122 Milano Tel. +39 02

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

2005-09-23 Thread customerservice
Hi, we have received your request and will contact you as soon as possible. Thank you. The Dreamsailing Staff www.dreamsailing.it [EMAIL PROTECTED] --- DreamSailing s.r.l. Gruppo Metauro Mare - Milano Corso di Porta Romana, 101 - 20122 Milano Tel. +39 02

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

2005-09-23 Thread customerservice
Hi, we have received your request and will contact you as soon as possible. Thank you. The Dreamsailing Staff www.dreamsailing.it [EMAIL PROTECTED] --- DreamSailing s.r.l. Gruppo Metauro Mare - Milano Corso di Porta Romana, 101 - 20122 Milano Tel. +39 02

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

2005-09-23 Thread customerservice
Hi, we have received your request and will contact you as soon as possible. Thank you. The Dreamsailing Staff www.dreamsailing.it [EMAIL PROTECTED] --- DreamSailing s.r.l. Gruppo Metauro Mare - Milano Corso di Porta Romana, 101 - 20122 Milano Tel. +39 02

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

2005-09-23 Thread customerservice
Hi, we have received your request and will contact you as soon as possible. Thank you. The Dreamsailing Staff www.dreamsailing.it [EMAIL PROTECTED] --- DreamSailing s.r.l. Gruppo Metauro Mare - Milano Corso di Porta Romana, 101 - 20122 Milano Tel. +39 02

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

2005-09-23 Thread customerservice
Hi, we have received your request and will contact you as soon as possible. Thank you. The Dreamsailing Staff www.dreamsailing.it [EMAIL PROTECTED] --- DreamSailing s.r.l. Gruppo Metauro Mare - Milano Corso di Porta Romana, 101 - 20122 Milano Tel. +39 02

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

2005-09-23 Thread customerservice
Hi, we have received your request and will contact you as soon as possible. Thank you. The Dreamsailing Staff www.dreamsailing.it [EMAIL PROTECTED] --- DreamSailing s.r.l. Gruppo Metauro Mare - Milano Corso di Porta Romana, 101 - 20122 Milano Tel. +39 02

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

2005-09-23 Thread mturk
mturk 2005/09/23 00:18:21 Modified:jk/native/common jk_lb_worker.c Log: Fix loadbalancer retries to allow usage of cachesize lower then number of threads. In case the worker is busy having no free endpoints, and the retries config value is larger the total number of workers in

cvs commit: jakarta-tomcat-connectors/jk/native/iis jk_isapi_plugin.c

2005-09-22 Thread mturk
mturk 2005/09/22 23:54:16 Modified:jk/native/iis jk_isapi_plugin.c Log: Remove temporary HTTP_TOMCATQUERY header from ALL_HTTP. Patch provided by Tim Whittington that fixes #36765 Revision ChangesPath 1.55 +13 -2 jakarta-tomcat-connectors/jk/native/iis/jk_isa

cvs commit: jakarta-tomcat-connectors/jk/native/iis jk_isapi_plugin.c

2005-09-22 Thread mturk
mturk 2005/09/22 23:35:10 Modified:jk/native/iis jk_isapi_plugin.c Log: Use simple Translate header for multiple instances. Patch provided by Tim Whittington fixes #35298. Revision ChangesPath 1.54 +7 -4 jakarta-tomcat-connectors/jk/native/iis/jk_isapi_plugi

Re: cvs commit: jakarta-tomcat-5 build.xml

2005-09-22 Thread Mark Thomas
Yoav Shapira wrote: Hi, Will Yoav tag the CVS or SVN for the upcoming release ? I was going to tag both repositories this one time. I am 99% sure that you will not be able to tag the CVS repositories that have already migrated since they will be locked. This will only affect servletapi

Re: cvs commit: jakarta-tomcat-5 build.xml

2005-09-22 Thread Yoav Shapira
Hi, > Will Yoav tag the CVS or SVN for the upcoming release ? I was going to tag both repositories this one time. > > For the record, all members of the tomcat pmc have karma for all modules > > including the specs. This allows us to fix issues with the examples. This is great. Yoav

Re: cvs commit: jakarta-tomcat-5 build.xml

2005-09-22 Thread Remy Maucherat
Mark Thomas wrote: [EMAIL PROTECTED] wrote: remm2005/09/22 03:39:37 Modified:.build.xml Log: - Fix build by excluding tagPlugins.xml. - This file shouldn't be in the standard examples, but rather copied there before precompiling (once it works again, of course

Re: cvs commit: jakarta-tomcat-5 build.xml

2005-09-22 Thread Mark Thomas
[EMAIL PROTECTED] wrote: remm2005/09/22 03:39:37 Modified:.build.xml Log: - Fix build by excluding tagPlugins.xml. - This file shouldn't be in the standard examples, but rather copied there before precompiling (once it works again, of course). This should be unn

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/connector CoyoteAdapter.java

2005-09-22 Thread remm
remm2005/09/22 10:20:21 Modified:webapps/docs changelog.xml catalina/src/share/org/apache/catalina/connector CoyoteAdapter.java Log: - 34749: jsessionid dropped on trailing slash (/) redirect. Revision ChangesPath 1.379 +3 -0

cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml cluster-howto.xml

2005-09-22 Thread yoavs
yoavs 2005/09/22 07:21:19 Modified:webapps/docs changelog.xml cluster-howto.xml Log: Relocate clustering FAQ from howto to the main FAQ. Revision ChangesPath 1.378 +3 -0 jakarta-tomcat-catalina/webapps/docs/changelog.xml Index: changelog.xml

cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml cluster-howto.xml

2005-09-22 Thread yoavs
yoavs 2005/09/22 06:39:32 Modified:webapps/docs changelog.xml cluster-howto.xml Log: Bugzilla 35613: http://issues.apache.org/bugzilla/show_bug.cgi?id=35613 Revision ChangesPath 1.377 +3 -0 jakarta-tomcat-catalina/webapps/docs/changelog.xml Index: changelo

cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml

2005-09-22 Thread yoavs
yoavs 2005/09/22 06:34:06 Modified:catalina/src/bin service.bat webapps/docs changelog.xml Log: Bugzilla 35609: http://issues.apache.org/bugzilla/show_bug.cgi?id=35609 Revision ChangesPath 1.13 +3 -3 jakarta-tomcat-catalina/catalina/src/bin/serv

cvs commit: jakarta-tomcat-5 build.xml

2005-09-22 Thread remm
remm2005/09/22 03:39:37 Modified:.build.xml Log: - Fix build by excluding tagPlugins.xml. - This file shouldn't be in the standard examples, but rather copied there before precompiling (once it works again, of course). Revision ChangesPath 1.238 +3 -

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-09-21 Thread Tim Whittington
Sorted. William A. Rowe, Jr. wrote: Ack - there was a lingering #ifdef JK_NEED_... which should have been an #if JK_NEED_... - this is fixed in cvs, please retry and thanks for the detailed report! Bill Tim Whittington wrote: Confused me too. Error message is listed below. [exec]

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-09-21 Thread William A. Rowe, Jr.
Ack - there was a lingering #ifdef JK_NEED_... which should have been an #if JK_NEED_... - this is fixed in cvs, please retry and thanks for the detailed report! Bill Tim Whittington wrote: Confused me too. Error message is listed below. [exec] cl.exe /nologo /MD /W3 /Zi /O2 /I "..\co

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-09-21 Thread wrowe
wrowe 2005/09/21 06:59:50 Modified:jk/native/apache-2.0 mod_jk.c Log: Fix the JK_NEED test to follow a 1|0 value instead of ifdef Revision ChangesPath 1.155 +2 -2 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c =

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-09-20 Thread Tim Whittington
Confused me too. Error message is listed below. [exec] cl.exe /nologo /MD /W3 /Zi /O2 /I "..\common" /I "C:\j2sdk1.4.2_07\include" /I "C:\j2sdk1.4.2_07\include \win32" /I "C:/Program Files/Apache Group/Apache2\include" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /Fo".\Release\\" /Fd".\R elea

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-09-20 Thread William A. Rowe, Jr.
Tim Whittington wrote: This breaks the build on Windows using Microsoft Visual C++ Toolkit 2003 (at least). It seems #define FOO 0 on WIN32 is still defined according to #ifdef Your suggestion is counterintuitive and reflects, perhaps, a compiler bug. It would be very helpful if you would pos

Re: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-09-20 Thread Tim Whittington
This breaks the build on Windows using Microsoft Visual C++ Toolkit 2003 (at least). It seems #define FOO 0 on WIN32 is still defined according to #ifdef Changing # define JK_NEED_SET_MUTEX_PERMS 0 to # undef JK_NEED_SET_MUTEX_PERMS fixes the problem tim [EMAIL PROTECTED] wrote: wrowe

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

2005-09-20 Thread markt
markt 2005/09/20 15:18:41 Modified:coyote/src/java/org/apache/coyote/tomcat4 CoyoteConnector.java Log: Fix bug 34771 - unable to set maxHttpHeaderSize. Also enabled the setting of compressableMimeTypes and removed some dead code. Revision Changes

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/valves RemoteHostValve.java

2005-09-20 Thread markt
markt 2005/09/20 14:02:12 Modified:catalina/src/share/org/apache/catalina/valves RemoteHostValve.java Log: Correct JavaDocs. Revision ChangesPath 1.5 +2 -2 jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/valves/RemoteHo

cvs commit: jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/tagplugins/jstl/core - New directory

2005-09-20 Thread remm
remm2005/09/20 03:56:41 jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/tagplugins/jstl/core - New directory - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml

2005-09-19 Thread remm
remm2005/09/19 04:35:50 Modified:catalina/src/share/org/apache/catalina/session StandardSession.java webapps/docs changelog.xml Log: - 36541: Full syncs using a Hashtable for session attributes, as mandated in the next specification.

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

2005-09-17 Thread Yoav Shapira
Hi, I haven't had time to play with it, but wanted to say +1 as I think this is a cool effort and a good idea. Yoav --- Costin Manolache <[EMAIL PROTECTED]> wrote: > I have few weeks, I'm trying to sync up some of the few changes I made > in the last year before the code is moved to svn and try

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

2005-09-17 Thread mturk
mturk 2005/09/17 04:19:47 Modified:jk/native/common jk_shm.c Log: Use named union for shm header. Some compilers have problems comiling unnamed unions as struct members. Revision ChangesPath 1.21 +21 -21jakarta-tomcat-connectors/jk/native/common/jk_shm.c

cvs commit: jakarta-tomcat-catalina/webapps/docs realm-howto.xml

2005-09-17 Thread markt
markt 2005/09/17 02:59:44 Modified:webapps/docs realm-howto.xml Log: Fix broken links. Revision ChangesPath 1.27 +3 -2 jakarta-tomcat-catalina/webapps/docs/realm-howto.xml Index: realm-howto.xml ==

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

2005-09-16 Thread Costin Manolache
I have few weeks, I'm trying to sync up some of the few changes I made in the last year before the code is moved to svn and try a bit more the 'embedded' scenario ( both single-jar tomcat - that actually works well, and also coyote-only ). I uploaded 2 jars at http://people.apache.org/~costin/m

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

2005-09-16 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: costin 2005/09/14 23:04:01 Modified:catalina/src/share/org/apache/catalina/startup Bootstrap.java Log: Support for corner case, when all tomcat is in a single jar and no fancy classloaders are used. That's nice functionality :)

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

2005-09-15 Thread mturk
mturk 2005/09/15 22:52:26 Modified:jk/native/common jk_lb_worker.c jk_shm.c jk_shm.h jk_status.c Log: Fix bug #36525 by properly aligning shared memory header struct. This patch was provided and investigated by Rainer Jung. Thaks! Also bring back 64 b

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

2005-09-15 Thread Henri Gomez
Happy to see Costin is back :) 15 Sep 2005 06:04:01 -, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > costin 2005/09/14 23:04:01 > > Modified:catalina/src/share/org/apache/catalina/startup > Bootstrap.java > Log: > Support for corner case, when all tomcat is i

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

2005-09-14 Thread costin
costin 2005/09/14 23:04:01 Modified:catalina/src/share/org/apache/catalina/startup Bootstrap.java Log: Support for corner case, when all tomcat is in a single jar and no fancy classloaders are used. Revision ChangesPath 1.23 +9 -5 jaka

cvs commit: jakarta-tomcat-catalina/modules/cluster/src/share/org/apache/catalina/cluster/session DeltaSession.java

2005-09-14 Thread pero
pero2005/09/14 08:28:14 Modified:modules/cluster/src/share/org/apache/catalina/cluster/session DeltaSession.java Log: fix: attribute and notes sync at DeltaSession,recycle() Revision ChangesPath 1.37 +7 -3 jakarta-tomcat-catalina/mod

cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml monitoring.xml

2005-09-14 Thread pero
pero2005/09/14 08:05:50 Modified:webapps/docs changelog.xml monitoring.xml Log: Add JMX Remote create and unregister ant tasks Revision ChangesPath 1.373 +3 -0 jakarta-tomcat-catalina/webapps/docs/changelog.xml Index: changelog.xml

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/ant/jmx JMXAccessorCreateTask.java JMXAccessorUnregisterTask.java JMXAccessorQueryTask.java JMXAccessorSetTask.java JMXAccessorTask.java antlib.xml jmxaccessor.tasks

2005-09-14 Thread pero
pero2005/09/14 06:28:29 Modified:catalina/src/share/org/apache/catalina/ant/jmx JMXAccessorQueryTask.java JMXAccessorSetTask.java JMXAccessorTask.java antlib.xml jmxaccessor.tasks Added: catalina/src/share/org/apache/catalina/an

cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml

2005-09-14 Thread pero
pero2005/09/14 06:25:22 Modified:webapps/docs changelog.xml Log: add: Sync all session attribute access (read and write) at DeltaSession Revision ChangesPath 1.372 +3 -0 jakarta-tomcat-catalina/webapps/docs/changelog.xml Index: changelog.xml ==

cvs commit: jakarta-tomcat-catalina/modules/cluster/src/share/org/apache/catalina/cluster/session DeltaSession.java

2005-09-14 Thread pero
pero2005/09/14 05:46:56 Modified:modules/cluster/src/share/org/apache/catalina/cluster/session DeltaSession.java Log: Fix mutli threading issue at session write attributes S. Bug: 36541 Revision ChangesPath 1.36 +12 -6 jakarta-tomca

Re: cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-09-14 Thread Mladen Turk
Tim Whittington wrote: I'm pretty sure this patch is broken looking at it now. The HTTP_ variants used in the extension aren't initialized properly. I'm currently on the road, but I'll be able to fix this up next week. I've just commit the fix for the previous fix :) Can you confirm if it's

cvs commit: jakarta-tomcat-connectors/jk/native/iis jk_isapi_plugin.c

2005-09-14 Thread mturk
mturk 2005/09/14 03:52:44 Modified:jk/native/iis jk_isapi_plugin.c Log: Fix patch 35298. The patch was lacking the HTTP_ prefix headers with dll instance postfix. Also the postfix is bogus if there is underscore between header names. Probably the IIS issue. Revision Chang

Re: cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-09-14 Thread Mladen Turk
Tim Whittington wrote: I'm pretty sure this patch is broken looking at it now. The HTTP_ variants used in the extension aren't initialized properly. I'm currently on the road, but I'll be able to fix this up next week. You are correct about that. I was presuming the patch is correct (may ba

RE: cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-09-14 Thread Tim Whittington
PROTECTED] Sent: Tue 13/09/2005 01:46 To: [EMAIL PROTECTED] Subject: cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml mturk 2005/09/12 06:46:01 Modified:jk/native/iis jk_isapi_plugin.c jk/xdocs changelog.xml Log: Fix #35298. Patch provided by Tim Whitt

cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-09-13 Thread mturk
mturk 2005/09/13 23:50:14 Modified:jk/native/common jk_lb_worker.c jk/xdocs changelog.xml Log: Fix lb for worker mpm's with cachesize set to lower number then ThreadsPerChild is. If retries is set to value larger then 3 sleep for 100 ms on each attempt. This enab

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

2005-09-13 Thread mturk
mturk 2005/09/13 23:45:00 Modified:jk/native/common jk_ajp_common.c jk_connect.h Log: Make jk_sleep_def as nonstatic. Revision ChangesPath 1.120 +2 -2 jakarta-tomcat-connectors/jk/native/common/jk_ajp_common.c Index: jk_ajp_common.c

[Fwd: cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c]

2005-09-12 Thread William A. Rowe, Jr.
I didn't miss the SVN conversion horizion? This needs to hit jk before we roll out 1.2.15. 1.152 broke Apache 2.0 builds (while conforming to Apache 2.2) - so this patch is the umbrella which addresses both flavors. Bill Original Message Subject: cvs commit: jakarta-t

cvs commit: jakarta-tomcat-catalina/webapps/docs mbeans-descriptor-howto.xml

2005-09-12 Thread markt
markt 2005/09/12 16:11:33 Modified:webapps/docs mbeans-descriptor-howto.xml Log: Fix bug 36611 - link broken to printer friendly version of doc Revision ChangesPath 1.4 +1 -1 jakarta-tomcat-catalina/webapps/docs/mbeans-descriptor-howto.xml Index: mbeans

cvs commit: jakarta-tomcat WARNING.txt

2005-09-12 Thread markt
markt 2005/09/12 15:45:39 Added: .WARNING.txt Log: Add notice re CVS closure Revision ChangesPath 1.1 jakarta-tomcat/WARNING.txt Index: WARNING.txt === *** WARNING.txt **

cvs commit: jakarta-tomcat-4.0 WARNING.txt

2005-09-12 Thread markt
markt 2005/09/12 15:42:00 Added: .WARNING.txt Log: As notice re CVS closure Revision ChangesPath 1.1 jakarta-tomcat-4.0/WARNING.txt Index: WARNING.txt === *** WARNING.txt

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-09-12 Thread wrowe
wrowe 2005/09/12 15:21:31 Modified:jk/native/apache-2.0 mod_jk.c Log: Modify the test introduced in 1.152 for httpd-2.2 compatibility, the new symbol isn't available in httpd-2.0 leading to perms issues. This patch anticipates that the flag will become a 0|1 flag defin

cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-09-12 Thread mturk
mturk 2005/09/12 07:29:49 Modified:jk/xdocs changelog.xml Log: Update changelog. Revision ChangesPath 1.41 +5 -1 jakarta-tomcat-connectors/jk/xdocs/changelog.xml Index: changelog.xml ===

cvs commit: jakarta-tomcat-connectors/jk/native/iis/installer isapi-redirector-win32-msi.ism

2005-09-12 Thread mturk
mturk 2005/09/12 07:15:45 Modified:jk/native/iis/installer isapi-redirector-win32-msi.ism Log: Bump version. Revision ChangesPath 1.11 +1 -1 jakarta-tomcat-connectors/jk/native/iis/installer/isapi-redirector-win32-msi.ism Index: isapi-redirector-win32-ms

cvs commit: jakarta-tomcat-connectors/jk/native/iis jk_isapi_plugin.c

2005-09-12 Thread mturk
mturk 2005/09/12 07:10:51 Modified:jk/native/iis jk_isapi_plugin.c Log: Fix #35864 Status worker doesn't list workers Patch provided by Martin Goldhahn Revision ChangesPath 1.52 +9 -6 jakarta-tomcat-connectors/jk/native/iis/jk_isapi_plugin.c Index: jk

cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-09-12 Thread mturk
mturk 2005/09/12 06:54:44 Modified:jk/xdocs changelog.xml Log: Add missing tag Revision ChangesPath 1.40 +1 -0 jakarta-tomcat-connectors/jk/xdocs/changelog.xml Index: changelog.xml === RC

cvs commit: jakarta-tomcat-connectors/jk/xdocs/config iis.xml

2005-09-12 Thread mturk
mturk 2005/09/12 06:53:10 Modified:jk/xdocs/config iis.xml Log: Doc patch #35299 by Tim Whittington. Revision ChangesPath 1.3 +46 -2 jakarta-tomcat-connectors/jk/xdocs/config/iis.xml Index: iis.xml ===

cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-09-12 Thread mturk
mturk 2005/09/12 06:46:01 Modified:jk/native/iis jk_isapi_plugin.c jk/xdocs changelog.xml Log: Fix #35298. Patch provided by Tim Whittington. Revision ChangesPath 1.51 +22 -6 jakarta-tomcat-connectors/jk/native/iis/jk_isapi_plugin.c Index: j

cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-09-12 Thread mturk
mturk 2005/09/12 06:28:31 Modified:jk/xdocs changelog.xml Log: Update changelog Revision ChangesPath 1.38 +4 -0 jakarta-tomcat-connectors/jk/xdocs/changelog.xml Index: changelog.xml === R

cvs commit: jakarta-tomcat-connectors/jk/native/apache-2.0 mod_jk.c

2005-09-12 Thread mturk
mturk 2005/09/12 06:26:07 Modified:jk/native/apache-2.0 mod_jk.c Log: Fix #bug 35809. Patch provided by Christophe Dubach . Revision ChangesPath 1.153 +2 -2 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c Index: mod_jk.c =

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

2005-09-12 Thread mturk
mturk 2005/09/12 06:14:37 Modified:jk/native/common jk_shm.h Log: Cleanup. Revision ChangesPath 1.24 +1 -3 jakarta-tomcat-connectors/jk/native/common/jk_shm.h Index: jk_shm.h === RCS file

cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-09-12 Thread mturk
mturk 2005/09/12 05:58:24 Modified:jk/xdocs changelog.xml Log: Update changelog Revision ChangesPath 1.37 +13 -0 jakarta-tomcat-connectors/jk/xdocs/changelog.xml Index: changelog.xml === R

cvs commit: jakarta-tomcat-connectors/jk/native/iis jk_isapi_plugin.c

2005-09-12 Thread mturk
mturk 2005/09/12 05:54:31 Modified:jk/native/iis jk_isapi_plugin.c Log: Fix bug #36102 by using anon shared memory on windows. IIS can launch multiple child processes, so we need to share the date between them all. Revision ChangesPath 1.50 +3 -3 jakarta-t

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

2005-09-12 Thread mturk
mturk 2005/09/12 05:53:06 Modified:jk/native/common jk_lb_worker.c jk_shm.c jk_shm.h jk_status.c Log: Fix bug #36525 by not using 64 bit ints in shared memory. For some strange reasons both Solaris and Irix are core dumping. To deal with long running dat

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/naming/resources ProxyDirContext.java

2005-09-12 Thread remm
remm2005/09/12 03:57:46 Modified:catalina/src/share/org/apache/naming/resources ProxyDirContext.java Log: - Minor tweak: call a load to avoid possible useless allocate call when concurrently trying to add the same entry. Revision ChangesPath

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/naming/resources ResourceCache.java

2005-09-12 Thread remm
remm2005/09/12 03:33:12 Modified:catalina/src/share/org/apache/naming/resources ResourceCache.java Log: - 36594: Fix a number of issues in the class, most importantly fix updating the cache size after a failed allocation. - Submitted by Anil Gangoll

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

2005-09-11 Thread billbarker
billbarker2005/09/11 17:19:39 Modified:catalina/src/share/org/apache/catalina/core LocalStrings.properties StandardContext.java Log: Per section 13.2 of the spec, warn if CR or LF is found in a . Fix for Bug #36599 Revision ChangesPath 1.24

cvs commit: jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11 Http11BaseProtocol.java Http11Protocol.java

2005-09-11 Thread costin
costin 2005/09/11 09:25:20 Modified:http11/src/java/org/apache/coyote/http11 Http11Protocol.java Added: http11/src/java/org/apache/coyote/http11 Http11BaseProtocol.java Log: Small refactoring removing the compile time dependency between http connector

Re: cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml

2005-09-09 Thread support
We heartily thank you for your support & interest in our offerings. We appreciate & value your mails. We will soon contact you to take this further, as appropriate. Thank you, mie consultants inc. - To unsubscribe, e-mail: [

  1   2   3   4   5   6   7   8   9   10   >