Re: svn commit: r536456 - /tomcat/tc6.0.x/trunk/webapps/docs/config/valve.xml

2007-05-10 Thread Jean-Frederic
%b. > > "common" pattern is defined at org.apache.catalina.valves.Constant > public static final String COMMON_PATTERN = "%h %l %u %t \"%r\" %s > %b"; > > Double quotations are needed because %r would have white spaces. The \" doesn't work... The server.x

Re: svn commit: r536456 - /tomcat/tc6.0.x/trunk/webapps/docs/config/valve.xml

2007-05-10 Thread Jean-Frederic
On Thu, 2007-05-10 at 20:56 +0900, Takayuki Kaneko wrote: > I tried both alternatives. They worked correctly. Yep... I will use the single quotes. Cheers Jean-Frederic > > Regards, > > -Takayuki > > On 5/10/07, Tim Funk <[EMAIL PROTECTED]> wrote: > > Alt

Changing JK_OPT_FWDURIDEFAULT to JK_OPT_FWDURICOMPATUNPARSED

2007-05-15 Thread Jean-Frederic
Hi, I think that the default value of JK_OPT_FWDURIDEFAULT is bad and should be JK_OPT_FWDURICOMPATUNPARSED. Any comments? Cheers Jean-Frederic - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: Changing JK_OPT_FWDURIDEFAULT to JK_OPT_FWDURICOMPATUNPARSED

2007-05-15 Thread Jean-Frederic
ill do the decoding part. > > So what we do is what is documented. Breaking the default should have > serious reasons at least. For 1.3/3.0 we could consider changing more > easily of course. > > Why do you think the default is bad? Because it breaks the spec's an

Re: More on i5/OS and some modifications needed

2007-05-16 Thread Jean-Frederic
he code. No idea, if that has an interaction bug with filters. > > > > No more, we're is AS400_UTF8 mode so the ws_write in i5/OS and Linux > > is the same... > > > > Did you heard about problem with sent_body

Re: Changing JK_OPT_FWDURIDEFAULT to JK_OPT_FWDURICOMPATUNPARSED

2007-05-16 Thread Jean-Frederic
the > download README Yes I think that the correct option. Default values should always follow the spec's and be as secure as possible. Cheers Jean-Frederic > > or/and > > - Staying compatible in 1.2, changing in 1.3 but putting a big note in > the docs page about the opti

Re: New branch ?

2007-05-17 Thread Jean-Frederic
best way is to branch the actual code in a 6.0.x branch and develop the new API in trunk. (like in httpd). Cheers Jean-Frederic > > The list would be: > - new Comet capabilities, with non blocking IO > - revised EE integration APIs (for annotation processing) > - (proposed) por

Re: Improving mod_jk URI forwarding

2007-05-19 Thread Jean-Frederic
t; What's the problem? > === I think we still miss something... The mapping (map_uri_to_worker) uses r->uri. Should we use s->req_uri or a carefully normalised uri to do the mapping? Fixing s->req_uri doesn't help to fix the mapping (where the problem comes from). Cheers Jean-Frede

Re: Improving mod_jk URI forwarding

2007-05-19 Thread Jean-Frederic
On Sat, 2007-05-19 at 18:57 +0200, Rainer Jung wrote: > Jean-Frederic wrote: > > On Sat, 2007-05-19 at 14:27 +0200, Rainer Jung wrote: > >> Hi, > >> > >> now that we changed the default way how to forward URIs from mod_jk to > >> Tomcat (mod_jk 1.2.

Re: Improving mod_jk URI forwarding

2007-05-20 Thread Jean-Frederic
is going to normalise a url we have already normalised. Shouldn't we check that a second normalisation (like the Tomcat one) gives a different url and if yes have a flag to return "forbidden"? (Yes that would be a 4th option). Cheers Jean-Frederic > > >> Original URI

Re: Improving mod_jk URI forwarding

2007-05-20 Thread Jean-Frederic
DURIDEFAULTJK_OPT_FWDURIESCAPEDMINIMAL +++ Because that is what the SPEC's says. Cheers Jean-Frederic > Or even better: use the encoding done with mod_proxy_ajp? > > >> Original URI: > >> > >> /myapp/%252e%252e/otherapp/danger > >> > >

Re: svn commit: r544137 - /tomcat/connectors/trunk/jk/native/common/jk_uri_worker_map.c

2007-06-04 Thread Jean-Frederic
s is > mostly copy/paste from the IIS module > Note that we should rollback http://svn.apache.org/viewvc?view=rev&revision=538975 too, shouldn't we? Cheers Jean-Frederic - To unsubscribe, e-mail: [EMAIL PR

Re: jk/native/common/jk_uri_worker_map.c Efficiency in map_uri_to_worker()?

2007-06-06 Thread Jean-Frederic
he ';' so you will prevent valid url to work with this correction. Cheers Jean-Frederic > > It shows the fix coded as: > > for (i = 0; i < strlen(uri); i++) { > if (i == JK_MAX_URI_LEN) { > jk_log(l, JK_LOG_WARNING, >&quo

Re: svn commit: r544137 - /tomcat/connectors/trunk/jk/native/common/jk_uri_worker_map.c

2007-06-11 Thread Jean-Frederic
l mess up > character encoding, and may not correspond to the original URI. > > How does it work in mod_proxy ? Mod_proxy uses ap_proxy_canonenc to reencode the URL. For example: /myapp/%25%25%25toto%25.gif -> /myapp/%%%toto%.txt (by mod_write) -> myapp/%25%25%25toto%25.txt

Re: svn commit: r544137 - /tomcat/connectors/trunk/jk/native/common/jk_uri_worker_map.c

2007-06-11 Thread Jean-Frederic
t Tomcat could process the request correctly. Mod_proxy does that correctly via ap_proxy_canonenc(). Should I port ap_proxy_canonenc() to mod_jk and make it the default handling? Cheers Jean-Frederic > > How does it work in mod_proxy ? > > Rémy > > --

Re: svn commit: r546531 - in /tomcat/connectors/trunk/jk/native: apache-1.3/mod_jk.c apache-2.0/mod_jk.c common/jk_global.h common/jk_url.c common/jk_url.h common/list.mk.in

2007-06-12 Thread Jean-Frederic
rdURIProxy to the URl handling option. > > common/jk_url.c is just a porting of the routines > > from proxy_util.c (Apache httpd). > > After quite a few discussions, I think this should be the only mode > available for URI handling, as the two others are broken. > > Co

Re: svn commit: r546531 - in /tomcat/connectors/trunk/jk/native: apache-1.3/mod_jk.c apache-2.0/mod_jk.c common/jk_global.h common/jk_url.c common/jk_url.h common/list.mk.in

2007-06-13 Thread Jean-Frederic
On Tue, 2007-06-12 at 19:50 +0200, Mladen Turk wrote: > Jean-Frederic wrote: > >>> Add ForwardURIProxy to the URl handling option. > >>> common/jk_url.c is just a porting of the routines > >>> from proxy_util.c (Apache httpd). > >> After quite a

Re: Proposed simplification of CometEvent

2007-06-13 Thread Jean-Frederic
eds the extra argument, and will mean same as > > Thread.sleep(), > > but > > not-blocking ? > > This sleep is a non blocking call, and instructs the connection to "do > nothing until I wake you up (or a timeout occurs,

Re: mod_jk problem when streaming files larger than ~400k (causes ClientAbortException)

2006-12-07 Thread Jean-Frederic
On Thu, 2006-12-07 at 11:48 +0100, Henri Gomez wrote: > The problem is still here in future jk 1.2.20 I can't reproduce something like that with 5.5.17, could you try with a TC5.5.x? Cheers Jean-Frederic > > 2006/12/7, Henri Gomez <[EMAIL PROTECTED]>: > > More on

Re: svn commit: r502649 - /tomcat/connectors/trunk/jk/native/common/jk_global.h

2007-02-04 Thread Jean-Frederic
piler will take precedence checking for sys/socketvar.h... yes +++ And in common/portable.h: +++ /* Define to 1 if you have the header file. */ #define HAVE_SYS_SELECT_H 1 /* Define to 1 if you have the header file. */ #define HAVE_SYS_SOCKETVAR_H 1 +++ Cheers Jean-Frederic On Fri, 2007-02-02

Re: svn commit: r502649 - /tomcat/connectors/trunk/jk/native/common/jk_global.h

2007-02-05 Thread Jean-Frederic
Something like: +++ [[#ifdef HAVE_SYS_SOCKETVAR_H # include #endif ]]) AC_CHECK_HEADERS([sys/select.h], [], [], [[#ifdef HAVE_SYS_SELECT_H # include #endif ]]) +++ helps for sys/socketvar.h Should we have macros for that? Cheers Jean-Frederic On Fri, 2007-02-02 at 18:36 +0100, Rainer Jung

snprintf/vsnprintf in mod_jk

2007-02-22 Thread Jean-Frederic
defined(NETWARE) || defined(AS400) #define USE_SPRINTF #define USE_VSPRINTF #endif +++ Could someone check that the snprintf() and snprintf() of jk_util.c are working on NETWARE and AS400? Cheers Jean-Frederic - To unsubscribe, e

Releasing mod_jk 1.2.21

2007-02-22 Thread Jean-Frederic
Hi, I think time as arrive to release 1.2.21. Are there pending changes? Or urgent ugly bugs? What about a date like Friday evening (GMT) for tagging? Cheers Jean-Frederic - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: Releasing mod_jk 1.2.21

2007-02-23 Thread Jean-Frederic
9 from IIS to Apache You want to remove sessionid=D5E2FE08F02400159DFD6231 11F98FEE.p-ng-ptom2 from /shoppingcc/img/btn_nav_main_login.gif;jsessionid=D5E2FE08F02400159DFD6231 11F98FEE.p-ng-ptom2 do it with mod_rewrite: RewriteRule ^/(.*).gif;jsessionid=.*$ /$1.gif [PT] Cheers Jean-Frederic >

Re: Releasing mod_jk 1.2.21

2007-02-23 Thread Jean-Frederic
I also have the pending patch... To prevent typos in the properties no beeing detected what starting httpd. Should I include it? Cheers Jean-Frederic Index: apache-1.3/mod_jk.c === --- apache-1.3/mod_jk.c (revision 510645

Re: svn commit: r511326 - in /tomcat/connectors/trunk/jk/native: apache-1.3/mod_jk.c apache-2.0/mod_jk.c common/jk_map.c common/jk_util.c

2007-02-26 Thread Jean-Frederic
@@ -2776,7 +2779,8 @@ > > } > > } > > } > > - init_jk(pconf, conf, s); > > +if (init_jk(pconf, conf, s)) > > +return !OK; > > } > > } > > Ap

Re: svn commit: r511227 - in /tomcat/connectors/trunk/jk: native/apache-1.3/mod_jk.c native/apache-2

2007-02-26 Thread Jean-Frederic
On Mon, 2007-02-26 at 16:07 +1300, Tim Whittington wrote: > Never mind the second issue - one should read the docs more carefully. > Apologies for the noise. > The missing sizeof makes me nervous still. sizeof(char) is one and there is a sprintf()... Cheers Jean

Re: Tagging JK 1.2.21

2007-02-28 Thread Jean-Frederic
Solaris, HPUX, Darwin). Comments? Cheers Jean-Frederic > > I'm travelin at the moment, otherwise I would have suggested to tag even > earlier. Anyone planning to apply important changes to trunk before > saturday, please sh

[VOTE] Releasing Tomcat Connectors 1.2.21

2007-03-01 Thread Jean-Frederic
Beta - at least one significant issue -- tell us what it is [ ] Alpha - multiple significant issues -- tell us what they are Cheers, Jean-Frederic - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [

Re: [VOTE] New committer: Fabian Carrion

2007-03-01 Thread Jean-Frederic
On Thu, 2007-03-01 at 11:49 +0100, Remy Maucherat wrote: > Hi, > > I'd like to nominate Fabian Carrion as a committer on the Apache Tomcat > project. Fabian contributed many useful patches, including helping add > support for Servlet 2.5 in Apache Tomcat 6.0. > >

Re: [VOTE] Releasing Tomcat Connectors 1.2.21

2007-03-02 Thread Jean-Frederic
cache (mod_cache_mem) . I disabled all of these and still was > experiencing the problem. Could you please fill a bugzilla report describing the problem and how to reproduce it? Cheers Jean-Frederic - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [ANN] Apache Tomcat JK 1.2.21 Web Server Connector released

2007-03-02 Thread Jean-Frederic
On Fri, 2007-03-02 at 17:34 +0100, Mladen Turk wrote: > Jean-Frederic wrote: > > > > Source distribtions can be downloaded from an > > Apache Software Foundation mirror at: > > > > http://tomcat.apache.org/download-connectors.cgi > > > > Can you fix

[ANN] Apache Tomcat JK 1.2.21 Web Server Connector released

2007-03-02 Thread Jean-Frederic
The Apache Tomcat team is pleased to announce the immediate availability of version 1.2.21 of the Apache Tomcat Connectors. It contains connectors, which allow a web server such as Apache HTTPD, Microsoft IIS and Sun Web Server to act as a front end to the Tomcat web application server. This vers

Re: Proposed new security pages

2007-03-02 Thread Jean-Frederic
gt; the top of the first page and then start searching the archives and > other public vulnerability databases. > > Any comments before I commit these changes to the live site? Add a mod_jk Apache Tomcat JK +1 Cheers Jean-Frederic > > Mark > > -

Re: [ANN] Apache Tomcat JK 1.2.21 Web Server Connector released

2007-03-02 Thread Jean-Frederic
Hi, Paul Querna suggest to use LimitRequestLine 4000 on Apache httpd to limit the possible abuse of this vulnerability. Just add it in httpd.conf and make a graceful restart. Cheers Jean-Frederic - To unsubscribe, e-mail

Re: mod_jk release tool chain

2007-03-04 Thread Jean-Frederic
mats seem to differ, so I would prefer > to stabilize on one of them. w3m and elinks seem to be not very active > (w3m no releases at all, elinks once a year). There is a follow-up > project on links http://links.twibright.com. It is under GPL, but for > simply running it, that's OK

Re: JK2 confusion

2007-03-04 Thread Jean-Frederic
ot that significant (OpenSSL 0.9.8 supports it, don't ask >me if JSSE does.) > > 4. Waka. Why reinvent a wheel in motion? With the new focus at the >httpd Amsterdam code to break apart http from apache, we are adding >wiggle room for some to come behind and code to

Re: [EMAIL PROTECTED]: Project jakarta-tomcat (in module jakarta-tomcat) failed

2007-03-20 Thread Jean-Frederic
On Mon, 2007-03-19 at 19:55 -0700, Stefan Bodewig wrote: > To whom it may engage... Fixed thanks Cheers Jean-Frederic > > This is an automated request, but not an unsolicited one. For > more information please visit http://gump.apache.org/nagged.html, > and/or cont

Re: mktemp didn't exist on i5

2007-03-30 Thread Jean-Frederic
stemp so that Henri could use the APR call? Cheers Jean-Frederic > > 2007/3/29, Mladen Turk <[EMAIL PROTECTED]>: > > Henri Gomez wrote: > > > While rebuild trunk from mod_jk I got an error on iSeries about > > > missing mktemp in iSeries. > > > > &g

Re: strange problem on i5

2007-03-30 Thread Jean-Frederic
On Thu, 2007-03-29 at 12:57 +0200, Henri Gomez wrote: > Hi to all, > > While using with the 1.2.21-dev on i5 (iSeries) I saw a strange > problem when doing SOAP works. What is the exception on TC side? Cheers Jean-Frederic > > In SOAP, a Fault Exception is sent by Tomcat as

Building 5.0.x for svn

2007-04-20 Thread Jean-Frederic
Hi, Is there an explanation how to build a TC-5.0.x from the svn? Cheers Jean-Frederic - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

TC 5.0.x releases

2007-04-21 Thread Jean-Frederic
Hi, Does someone plan to release a TC 5.0.x for the last security fixes? I have arranged jasper and the build and I still have to patch the code for the latest security fixes. (I have already ported the CVE-2007-0450 corrections) Cheers Jean-Frederic

Re: svn commit: r530761 - /tomcat/build/branches/tc5.0.x/build.properties.default

2007-04-21 Thread Jean-Frederic
ta-regexp-1.3 are not solved. The files in dist/jakarta/regexp/binaries/ have been restored. Cheers Jean-Frederic - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: More on i5/OS and some modifications needed

2007-04-23 Thread Jean-Frederic
tead the apr_strnatcasecmp, for example in mod_jk.c > for apache 2 ? Better use something like: #ifdef AS400_UTF8 #define strcasecmp(a,b) apr_strnatcasecmp(a,b) #endif Cheers Jean-Frederic > > - > To unsubscribe, e-mail:

Re: download page a mess

2007-04-24 Thread Jean-Frederic
On Tue, 2007-04-24 at 18:56 -0500, William A. Rowe, Jr. wrote: > http://www.apache.org/dist/tomcat/tomcat-5/ > > is rather gross - any hope of cleaning up the chaos? 3x 5.5.20 + 2x 5.0.30? IMHO: The 5.5.20 should be removed. The v5.0.30-beta is a link to v5.0.30 Cheers Jean

Re: More on i5/OS and some modifications needed

2007-04-25 Thread Jean-Frederic
be *d = NULL ? I think that you should have: apr_pool_cleanup_register(p, &main_log, jklog_cleanup, jklog_cleanup); if you want to use *d = NULL; to set main_log to NULL. Cheers Jean-Frederic > > Also shouldn't we reset main_log and conf->log ? > > > 2007/4/24,

Re: TC 5.0.x releases

2007-04-26 Thread Jean-Frederic
ut that does prevent anyone to ask and do the release because we vote the releases. Cheers Jean-Frederic > > Yoav > > - > To unsubscribe

Re: Latest mod_jk?

2005-10-15 Thread Jean-frederic Clere
Fenlason, Josh wrote: What is the latest stable mod_jk? I know there was a vote for 1.2.15. What is the status of that? On the download page it has links to 1.2.14, but these links are broken. (http://tomcat.apache.org/download-connectors.cgi) I have repaired the download page. On the

Re: Latest mod_jk?

2005-10-15 Thread Jean-frederic Clere
Jean-frederic Clere wrote: Fenlason, Josh wrote: What is the latest stable mod_jk? I know there was a vote for 1.2.15. What is the status of that? On the download page it has links to 1.2.14, but these links are broken. (http://tomcat.apache.org/download-connectors.cgi) I have

tomcat/build/tc5.5.x/resources/build.xml

2005-10-18 Thread Jean-frederic Clere
else? (like using javasvn: http://tmate.org/svn/). Comments? Cheers Jean-Frederic - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: tomcat/build/tc5.5.x/resources/build.xml

2005-10-19 Thread Jean-frederic Clere
Costin Manolache wrote: Isn't possible to get a svn tree using http download ? I tought one of the benefits of svn is that it uses http. gets only one file not the complete tree ;-( Jean-frederic Costin On 10/18/05, Jean-frederic Clere <[EMAIL PROTECTED]> wrote: hi,

Re: [JK] Status -- was [VOTE] JK 1.2.15

2005-10-24 Thread Jean-frederic Clere
Mladen Turk wrote: William A. Rowe, Jr. wrote: Do you guys find something that would prevent 1.2.15 to be declared as stable that I'm missing? I'll try to find cycles to test myself, next week. I know I'm having alot of trouble with the apache 1.3 build on odd architectures, probably beca

Re: tomcat source / eclipse project

2005-10-27 Thread Jean-frederic Clere
hasssip satang wrote: Hi, I'm trying to setup a tomcat eclipse project. Looking through the list archive I've seen that some of you have been sharing their .project and .classpath files. If you could send me these files as well (or point me to a resource where I can download them) that

Re: Sloppy, Lazy Tomcat Developers (Was: Persistent "xmlValidation" Problem)

2005-11-04 Thread Jean-frederic Clere
ent to Tomcat's crappy documentation than to its popularity. Well Tomcat documentation needs _urgent_ improvements. Cheers Jean-Frederic Yes, yes, I know Tomcat is "not for me". You're damned right. I'm

Re: HPUX Itanium Native Connector Build Error

2005-11-09 Thread Jean-frederic Clere
Fenlason, Josh wrote: Hey everybody! I'm trying to build the native apr connector from Tomcat 5.5.12 on HPUX Itanium and I'm running into a problem during the configure. APR 1.2.2 built fine. I built OpenSSL 0.9.8a as a static library (I couldn't get it to build as a shared library.) When I t

Re: AprEndpoint and IPv6

2006-01-29 Thread Jean-frederic Clere
f, t, protocol, p), a); } +++ Isn't APR_UNSPEC defined to zero? - that would explain the problem decribed in http://issues.apache.org/bugzilla/attachment.cgi?id=17525 - Cheers Jean-Frederic - To unsubscribe, e-mail: [EMAIL PROTECT

Re: AprEndpoint and IPv6

2006-01-29 Thread Jean-frederic Clere
Jim Jagielski wrote: There's a bug report (37788) regarding allowing AprEndpoint to use APR IPv6 addresses. Their patch is almost right, but instead the value should be to use APR_UNSPEC instead of APR_INET6 (or the current APR_INET) to allow APR to correctly determine IP version and do a gracef

Re: AprEndpoint and IPv6

2006-01-29 Thread Jean-frederic Clere
Jean-frederic Clere wrote: Jim Jagielski wrote: There's a bug report (37788) regarding allowing AprEndpoint to use APR IPv6 addresses. Their patch is almost right, but instead the value should be to use APR_UNSPEC instead of APR_INET6 (or the current APR_INET) to allow APR to corr

war deployement question

2006-02-21 Thread Jean-frederic Clere
Hi, I have small question: In which class(es) are the warfiles deployed? Cheers Jean-Frederic - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: war deployement question

2006-02-21 Thread Jean-frederic Clere
Remy Maucherat wrote: Jean-frederic Clere wrote: Hi, I have small question: In which class(es) are the warfiles deployed? In Tomcat, the "deployer" is a listener class for the Host, called HostConfig. Thanks, I am now in ExpandWar.java ;-) Cheers Jean-Freder

Re: Strange Google search text for Tomcat

2006-02-26 Thread Jean-frederic Clere
it's likely the source. Don't know how it could be fixed - either submit it with the right description, or maybe ask to become an editor ? I have applied for it. Cheers Jean-Frederic Costin ( with standard disclaimers, I just did a quick search :-) On 2/25/06, Yoav Shapi

Re: svn commit: r381081 - /tomcat/container/tc5.5.x/webapps/docs/logging.xml

2006-02-26 Thread Jean-frederic Clere
Hi, Next question: how do I republish the http://tomcat.apache.org/tomcat-5.5-doc pages? Cheers Jean-Frederic - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: New build ?

2006-02-28 Thread Jean-frederic Clere
Remy Maucherat wrote: Hi, Because of the critical AJP bugfix found and fixed earlier today, would it be possible to plan releasing a new 5.5.16 build soon ? +1... I have something not working when deploying an application with the 5.5.15 and using trunk helps ;-) Cheers Jean-Frederic

Re: [ANN] Apache Tomcat v5.5.16-beta Now Available

2006-03-06 Thread Jean-frederic Clere
). Cheers Jean-Frederic Thank you, The Apache Tomcat Team - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: [ANN] Apache Tomcat v5.5.16-beta Now Available

2006-03-06 Thread Jean-frederic Clere
s for updated versions... Ok... If nobody complains I will update the file in svn... For the next version. Cheers Jean-Frederic Yoav On 3/6/06, Jean-frederic Clere <[EMAIL PROTECTED]> wrote: Yoav Shapira wrote: The Apache Tomcat team is proud to announce the immediate avai

apache-tomcat-5.5.15-src/connectors/jni/native/configure

2006-03-14 Thread Jean-frederic Clere
Hi, Why aren´t we providing a configure in the released sources? Cheers Jean-Frederic - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

bad permissions in the 5.5.16 sources tar file.

2006-03-14 Thread Jean-frederic Clere
tomcat5 1156 Mar 5 02:25 build/get-version.sh +++ Strange permissions in trunk are ok, any hints? Cheers Jean-Frederic - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: bad permissions in the 5.5.16 sources tar file.

2006-03-14 Thread Jean-frederic Clere
Bill Barker wrote: -Original Message- From: Jean-frederic Clere [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 14, 2006 2:34 PM To: Tomcat Developers List Subject: bad permissions in the 5.5.16 sources tar file. Hi, I am trying to build libtcnative-1.so using the 5.5.16

ParserController.java

2006-03-16 Thread Jean-frederic Clere
nc is null we should used the sourceEnc to read the JSP file, so this patch is also needed for all the encodings. Any comments? Cheers Jean-Frederic - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: ParserController.java

2006-03-16 Thread Jean-frederic Clere
Mladen Turk wrote: Jean-frederic Clere wrote: Hi, One of the patches I need to get TC working with JSP in EBCDIC is the following: Any comments? Yes. Fix your clock. You live in the future :) Have to fix the past to be allow to live in the future :) Cheers, Mladen

Re: svn commit: r386315 - /tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/ParserController.java

2006-03-17 Thread Jean-frederic Clere
e that will be OSD_EBCDIC_DF04_1. Cheers Jean-Frederic This message is intended only for the use of the person(s) listed above as the intended recipient(s), and may contain information that is PRIVILEGED and CONFIDENTIAL. If you are not an intended recipient, you may not read, copy, or

Re: svn commit: r386315 - /tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/ParserController.java

2006-03-17 Thread Jean-frederic Clere
specified and ISO-8859-1 if none are specified. Cheers Jean-Frederic Costin On 3/17/06, Bill Barker <[EMAIL PROTECTED]> wrote: -Original Message- From: Costin Manolache [mailto:[EMAIL PROTECTED] Sent: Friday, March 17, 2006 11:57 AM To: Tomcat Developers List Subject

Re: svn commit: r386315 - /tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/ParserController.java

2006-03-17 Thread Jean-frederic Clere
:). Costin On 3/17/06, Bill Barker <[EMAIL PROTECTED]> wrote: -Original Message- From: Jean-frederic Clere [mailto:[EMAIL PROTECTED] Sent: Friday, March 17, 2006 4:13 AM To: Tomcat Developers List Subject: Re: svn commit: r386315 - /tomcat/jasper/tc5.5

Re: quick fix to be able to run configure on freebsd 6.0

2006-03-21 Thread Jean-frederic Clere
on: +++ freebsd*) CFLAGS="$CFLAGS -DOS_FREEBSD -DDSO_DLFCN -D_THREAD_SAFE -pthread" LDFLAGS="-pthread $LDFLAGS" supported_os="freebsd" ;; +++ Time to make a new release of daemon? Cheers Jean-Frederic --

Re: Broken link

2006-03-21 Thread Jean-frederic Clere
www/tomcat.apache.org/tomcat-5.0-doc/printer/status.html /www/tomcat.apache.org/tomcat-5.0-doc/status.html /www/tomcat.apache.org/tomcat-5.5-doc-v5.5.15/printer/status.html /www/tomcat.apache.org/tomcat-5.5-doc-v5.5.15/status.html +++ Why and why 5.5.15? Cheers Jean-Frede

Re: Found two compiler warnings at MAC OS X at tcnative/apr

2006-04-09 Thread Jean-frederic Clere
d_attr_t { long __sig; char __opaque [__PTHREAD_ATTR_SIZE__]; }; But I not clear what is the right cast or we need a spezial darwin handling? I don't think we need a special darwin handling: I think we can't cast a apr_os_thread_t to an unsigned

Re: "Critical poller failure" when using tcnative

2006-04-10 Thread Jean-frederic Clere
Remy Maucherat wrote: Mladen Turk wrote: Right. I was hoping to have the native release by the end of the week also. Since installer depends on outside natives, the native should be out before the 5.5.17. That's a good idea. There are some small issues with some compile warnings for MacOS

Re: SSL-based SessionTracking/Management

2006-05-03 Thread Jean-frederic Clere
Oliver Schoenwald wrote: Dear developers, I have developed an SSL-based SessionManagement for our university's e-learning system because I was unsuccessful to find any ability of Tomcat 5 to create and manage an SSLSession as in the JSSE-Specification. Several weeks of googling after such a f

Re: Memory leak? (issues.apache.org)

2006-05-04 Thread Jean-frederic Clere
#x27;m happy to provide yourkit memory dumps or access to the server if necessary. We're currently running 5.5.16. Reopen the bug, there seem to be something really wrong... Cheers Jean-Frederic Thanks! Jeff - To

Re: Memory leak? (issues.apache.org)

2006-05-04 Thread Jean-frederic Clere
#x27;m happy to provide yourkit memory dumps or access to the server if necessary. We're currently running 5.5.16. Have you try to set org.apache.jasper.runtime.JspFactoryImpl.USE_POOL to false? (adding -Dorg.apache.jasper.runtime.JspFactoryImpl.USE_POOL=false to CATALINA_OPTS environme

JK3 roadmap?

2007-06-27 Thread jean-frederic clere
Hi, I have noted that nothing has happened in tomcat/connectors/trunk/jk3. Nearly 2 months without real road map nor clear specifications, what is wrong? Cheers Jean-Frederic - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: JK3 roadmap?

2007-06-27 Thread jean-frederic clere
only medium. APR-izing is something I am willing to do even to lead... (I am APR committer since 1999!) Once APR would be there, I would start working on management threads. But APR is the necessary big first step (at least that's what I think) ... Me too Cheers Jean-Frederi

Re: Proposed simplification of CometEvent

2007-06-28 Thread jean-frederic clere
also don't think people are interested enough to vote. A vote proposal should be [VOTE] in the subject. Like [VOTE] Which Comet implementation/API to use. You just answer to an old thread so that doesn't cache the attention of community. Cheers Jean-Frede

Re: svn commit: r551809 - /tomcat/connectors/trunk/jk/native/common/jk_msg_buff.c

2007-06-29 Thread jean-frederic clere
->buf + msg->len, param, len + 1); /* including \0 */ Why do you remove the (char *)? Cheers Jean-Frederic #if (defined(AS400) && !defined(AS400_UTF8)) || defined(_OSD_POSIX) /* convert from EBCDIC if neede

Re: JK3 roadmap?

2007-06-29 Thread jean-frederic clere
Jim Jagielski wrote: On Jun 27, 2007, at 11:27 AM, jean-frederic clere wrote: Rainer Jung wrote: Whenever I had a couple of hours I was doing small tests with scripting. I think the most valuable first step would be the transformation to APR. Unfortunately this is something I could hekp

Re: Feature request /Discussion: JK loadbalancer improvements for high load

2007-07-05 Thread jean-frederic clere
/hardware and that is an OS depend code. Cheers Jean-Frederic For example, if some admins considers we should base the load-balancing on HTTP requests or SQL access, and they have these counters on their webapp applications, it will be usefull to be able to get them from Tomcat to send them

Removing the examples (JSP/servlet) in TC Binaries

2007-07-09 Thread jean-frederic clere
Hi, The examples (servlet and JSP) have caused a list of security issues. I think we should remove them from the Tomcat binary packages (6.0 and 5.x at least). Any comments? Cheers Jean-Frederic - To unsubscribe, e-mail

Re: Tomcat supporting PHP

2007-07-16 Thread jean-frederic clere
Jean-Frederic regards. Yoav Shapira-2 wrote: Hey, On 7/14/07, Bill Barker <[EMAIL PROTECTED]> wrote: "Joe Nathan" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] I think if Tomcat also supports PHP scripts, it could be wonderful!. Google is your friend :)

Re: Tomcat supporting PHP

2007-07-19 Thread jean-frederic clere
new Comet stuff). 2 - That also needs a servlet and a careful build of the php engine and it extensions. 3 - I don't think that the scope of the Tomcat project. Cheers Jean-Frederic - To unsubscribe, e-mail: [EMAIL PROT

Re: Tomcat supporting PHP

2007-07-19 Thread jean-frederic clere
huge thing to write. Cheers Jean-Frederic Of course it couldn't be a Tomcat project 2007/7/19, jean-frederic clere <[EMAIL PROTECTED]>: Hi, I am thinking that this thread goes to nowhere... To get some php stuff in TC you have 3 solutions: 1- FastCGI. 2- PHP engine embedded in

Re: svn commit: r557664 - /tomcat/tc6.0.x/trunk/java/org/apache/catalina/valves/SSLValve.java

2007-07-19 Thread jean-frederic clere
example to use https between httpd and TC so that the connection can be encrypted. Cheers Jean-Frederic This message is intended only for the use of the person(s) listed above as the intended recipient(s), and may contain information that is PRIVILEGED and CONFIDENTIAL. If you are not a

Re: [VOTE] Send trunk to the sandbox

2007-08-20 Thread jean-frederic clere
at/trunk/) will be created there we put what we agree to put for the actual trunk (by voting). Everyone that when to try something could try it in a new branche. Comments? Cheers Jean-Frederic > [ ] +0 What revolution? &

Re: [VOTE] Send trunk to the sandbox

2007-08-20 Thread jean-frederic clere
Remy Maucherat wrote: > jean-frederic clere wrote: >> Bill Barker wrote: >>> I'm so tired of this thread, so let's settle it once and for all. >>> I'm backing Remy's suggestion to send the current trunk to the sandbox: >>> [X] +1 Let's

Re: [VOTE] Move trunk to sandbox

2007-09-01 Thread Jean-frederic Clere
previous vote. Following this, debate should take place to determine if a new main trunk is needed, and if commit procedure changes would be good (personally, I do like Jean-Frédéric's ideas). [ X] +1 Cheers Jean-Frederic [ ] 0 [ ] -1

[VOTE] Make released versions RTC

2007-09-04 Thread jean-frederic clere
branch or sandbox) or a patch (diff -u) against the branch. A proposal needs 3 +1 votes and no -1 to be accepted. The committer that makes the proposal is responsible to commit the new code (and move the proposal from STATUS to CHANGES) in the branch once accepted. [ ] +1 [ ] 0 [ ] -1 Jean-Frederic

Re: [VOTE] Make released versions RTC

2007-09-04 Thread jean-frederic clere
xing bugs. Cheers Jean-Frederic > > -Tim > > jean-frederic clere wrote: >> Hi, >> >> I would also propose that we take an handling of release branches >> similar to httpd. >> >> The votes will get in a file named STATUS file and once accepted in a

Re: svn commit: r575332 - in /tomcat/tc6.0.x/trunk: java/org/apache/naming/resources/FileDirContext.java webapps/docs/changelog.xml

2007-09-18 Thread jean-frederic clere
. Where? Well in /tomcat/sandbox/next/TODO or tomcat/sandbox/next/ROADMAP or 6xFeatures.txt (replace next by something better like atlanta for example see: /httpd/sandbox/amsterdam/). Cheers Jean-Frederic - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Review model take 2

2007-09-18 Thread jean-frederic clere
+1 Cheers Jean-Frederic Remy Maucherat wrote: > Hi, > > Another more precise draft. > > Patches which would go to review would be: > - API changing patches (any protected or above signature change) on APIs > which are accessible to the user either from confirguration

Re: Review model take 2

2007-09-18 Thread jean-frederic clere
ould also mean it is possible to make a change that a number of >> committers oppose (possibly, would veto) if enough committers are in >> favor of it. > I don't really see the need of doing our own version of a semi RTC, > either we do RTC on release branches and CTR on t

Re: Review model take 2

2007-09-19 Thread jean-frederic clere
Remy Maucherat wrote: > jean-frederic clere wrote: >> Filip Hanik - Dev Lists wrote: >>> Remy Maucherat wrote: >>>> Hi, >>>> >>>> Another more precise draft. >>>> >>>> Patches which would go to review would be: >

  1   2   3   4   5   6   7   8   9   >