Re: mod_jk / Tomcat 6 and ErrorDocument

2008-09-23 Thread Henri Gomez
+1 for 1.2.27 2008/9/22 Mladen Turk <[EMAIL PROTECTED]>: > Rainer Jung wrote: >> >> >> I have some spare time later this week and next weekend and plan to >> finally do the IIS chunked encoding stuff. If we don't find anything >> else important we should be able to have a testing tar ball at the e

Re: mod_jk / Tomcat 6 and ErrorDocument

2008-09-22 Thread Mladen Turk
Rainer Jung wrote: I have some spare time later this week and next weekend and plan to finally do the IIS chunked encoding stuff. If we don't find anything else important we should be able to have a testing tar ball at the end of the month and soon after start the releasing process. We are a co

Re: mod_jk / Tomcat 6 and ErrorDocument

2008-09-22 Thread Rainer Jung
Henri Gomez schrieb: >> Right, sorry for the noise. >> There is no way to have that at the moment. Sorry to join the discussion to late, but yes: I think it always was like that, no way of overwriting the Tomcat error pages inside Apache. I put it on my personal TODO for mod_jk long ago :( >> F

Re: mod_jk / Tomcat 6 and ErrorDocument

2008-09-22 Thread Henri Gomez
> Right, sorry for the noise. > There is no way to have that at the moment. > The code I've quoted is when there is error in sending the > error page from the Tomcat, so in that case Httpd takes over, > and sends intended page. Yes. > For normal replacement of error pages > this would have to be

Re: mod_jk / Tomcat 6 and ErrorDocument

2008-09-22 Thread Mladen Turk
Henri Gomez wrote: Same thing for 404/500/503 I suppose. Sure. if (!r->sent_bodyct && r->status >= HTTP_BAD_REQUEST) { ... return r->status; } I added to the conf/web.xml : 404 /empty-error.html 500 /empty-error.html 503 /empty-error.html

Re: mod_jk / Tomcat 6 and ErrorDocument

2008-09-22 Thread Henri Gomez
Here is the corresponding jk debug trace : [Mon Sep 22 17:41:17.813 2008] [2816:4076] [debug] jk_ajp_common.c (1117): received from ajp13 pos=0 len=102 max=8192 [Mon Sep 22 17:41:17.813 2008] [2816:4076] [debug] jk_ajp_common.c (1117): 04 01 94 00 0B 49 6E 74 72 6F 75 76 61 62 6C 65 - ...

Re: mod_jk / Tomcat 6 and ErrorDocument

2008-09-22 Thread Henri Gomez
> Here is the HTTP header dump on my Firefox : > > Date: Mon, 22 Sep 2008 15:28:37 GMT > Server: Apache/2.2.9 (Win32) DAV/2 mod_jk/1.2.26 SVN/1.4.5 > Etag: W/"0-1222097246922" > Last-Modified: Mon, 22 Sep 2008 15:27:26 GMT > Vary: Accept-Encoding > Content-Encoding: gzip > Content-Type: text/html >

Re: mod_jk / Tomcat 6 and ErrorDocument

2008-09-22 Thread Henri Gomez
>> Same thing for 404/500/503 I suppose. >> > > Sure. > > if (!r->sent_bodyct && r->status >= HTTP_BAD_REQUEST) { > ... > return r->status; > } I added to the conf/web.xml : 404 /empty-error.html 500 /empty-error.html 503 /empty-error.html I t

Re: mod_jk / Tomcat 6 and ErrorDocument

2008-09-22 Thread Mladen Turk
Henri Gomez wrote: Hum good idea. Same thing for 404/500/503 I suppose. Sure. if (!r->sent_bodyct && r->status >= HTTP_BAD_REQUEST) { ... return r->status; } Regards -- ^(TM) - To unsubscribe, e-mail: [EMAIL PROTECT

Re: mod_jk / Tomcat 6 and ErrorDocument

2008-09-22 Thread Henri Gomez
Hum good idea. Same thing for 404/500/503 I suppose. 2008/9/22 Mladen Turk <[EMAIL PROTECTED]>: > Henri Gomez wrote: >> >> Hi to all, >> >> Did some of you experienced problems with mod_jk 1.2.26 (and maybe >> earlier release) and Apache 2.x ErrorDocument directive. >> >> In one of my configura

Re: mod_jk / Tomcat 6 and ErrorDocument

2008-09-22 Thread Mladen Turk
Henri Gomez wrote: Hi to all, Did some of you experienced problems with mod_jk 1.2.26 (and maybe earlier release) and Apache 2.x ErrorDocument directive. In one of my configuration I set : ErrorDocument 404 /gen_error404.html ErrorDocument 500 /gen_error500.html ErrorDocument 503 /

mod_jk / Tomcat 6 and ErrorDocument

2008-09-22 Thread Henri Gomez
Hi to all, Did some of you experienced problems with mod_jk 1.2.26 (and maybe earlier release) and Apache 2.x ErrorDocument directive. In one of my configuration I set : ErrorDocument 404 /gen_error404.html ErrorDocument 500 /gen_error500.html ErrorDocument 503 /gen_error503.html