Re: svn commit: r440337 - in /httpd/httpd/trunk: ./ include/ modules/arch/netware/ modules/experimental/ modules/generators/ modules/http/ modules/mappers/ modules/proxy/ modules/ssl/ server/ server/m

2006-09-05 Thread Ruediger Pluem
On 09/05/2006 03:08 PM, wrote: Author: trawick Date: Tue Sep 5 06:08:15 2006 New Revision: 440337 URL: http://svn.apache.org/viewvc?view=revrev=440337 Log: Replace ap_get_server_version with ap_get_server_banner() and ap_get_server_description(). High-level summary: The full

Re: svn commit: r440337 - in /httpd/httpd/trunk: ./ include/ modules/arch/netware/ modules/experimental/ modules/generators/ modules/http/ modules/mappers/ modules/proxy/ modules/ssl/ server/ server/m

2006-09-05 Thread Ruediger Pluem
On 09/05/2006 11:49 PM, William A. Rowe, Jr. wrote: Brian Akins wrote: Ruediger Pluem wrote: 1. If we stick to AP_DECLARE(const char *) ap_get_server_version(void); and do #define ap_get_server_banner ap_get_server_version I hate macros. Just do it like: AP_DECLARE(const char

Re: svn commit: r442758 - in /httpd/httpd/trunk/modules/generators: mod_cgi.c mod_cgid.c

2006-09-13 Thread Ruediger Pluem
On 09/13/2006 01:44 AM, wrote: Author: niq Date: Tue Sep 12 16:44:12 2006 New Revision: 442758 URL: http://svn.apache.org/viewvc?view=revrev=442758 Log: PR 31759 (mutated) - reported by Jo Rhett Don't return apr_status_t error value from input filter chain. Modified:

Re: svn commit: r442758 - in /httpd/httpd/trunk/modules/generators: mod_cgi.c mod_cgid.c

2006-09-13 Thread Ruediger Pluem
On 09/13/2006 10:17 PM, Nick Kew wrote: On Wednesday 13 September 2006 20:33, Ruediger Pluem wrote: Wouldn't it make sense to return OK even if rv != APR_SUCCESS in the case that c-aborted is set, just like in the default handler? I'm not sure. Presumably if c-aborted is set, then we

Re: load balancer and http(s) sticky sessions

2006-09-14 Thread Ruediger Pluem
On 09/14/2006 05:28 PM, Jim Jagielski wrote: There is a lot of confusion where the users think that simply adding the stickysession param to the http worker attribute *adds* the required sticky session info (cookie). I'm looking into adding functionality that actually does that and

Re: load balancer and http(s) sticky sessions

2006-09-14 Thread Ruediger Pluem
On 09/14/2006 06:14 PM, Jim Jagielski wrote: That's what I'm thinking, sort of like an 'autostickysession' attribute. We could even have it default to cookies but add something like 'autostickysession=url' to force URL rewriting and adding a tag to the end of the URL (for sites that

Re: load balancer and http(s) sticky sessions

2006-09-14 Thread Ruediger Pluem
On 09/14/2006 09:50 PM, Ruediger Pluem wrote: or even Header add Set-Cookie MYCOOKIE=SOMEVALUE.%{BALANCER_WORKER_ROUTE}e; path=/; env=BALANCER_ROUTE_CHANGED ProxyPass /test balancer://mycluster/test stickysession=MYCOOKIE nofailover=On Ok I think it should be Header add Set-Cookie

Re: load balancer and http(s) sticky sessions

2006-09-15 Thread Ruediger Pluem
On 09/15/2006 07:41 PM, Brian Rectanus wrote: I am thinking that there is still not a way to check if BALANCER_WORKER_ROUTE == BALANCER_SESSION_ROUTE at response time since I think 'SetEnvIf response ...' will not resolve env vars it did not Yes, this is true. It was also my first

Re: mod_cache responsibilities vs mod_xxx_cache provider responsibilities

2006-09-20 Thread Ruediger Pluem
On 09/20/2006 08:27 PM, Issac Goldstand wrote: Graham Leggett wrote: On Wed, September 20, 2006 5:27 pm, Brian Akins wrote: unless 0 is a valid content-length, which it can be. Also, what about when we are reading something in without a know C-L, for example from an origin doing chunks?

Re: mod_cache responsibilities vs mod_xxx_cache provider responsibilities

2006-09-20 Thread Ruediger Pluem
On 09/20/2006 09:59 PM, Issac Goldstand wrote: Ruediger Pluem wrote: First of all I guess you mean: BEFORE the CACHE_SAVE filter :-). Yes, there is a reason why we cannot do this: This would create a possible DoS, because we have to suck in the whole response first before actually

Re: creating new lbmethod for mod_proxy_balancer

2006-09-25 Thread Ruediger Pluem
On 25.09.2006 16:43, Garrett Rooney wrote: On 9/25/06, Ruediger Pluem [EMAIL PROTECTED] wrote: On 25.09.2006 16:32, Garrett Rooney wrote: On 9/25/06, Jim Jagielski [EMAIL PROTECTED] wrote: Actually, I've added the 'busy' struct element which could be used for that... The orig intent

Re: [PATCH] mod_disk_cache working LFS (filecopy)

2006-09-26 Thread Ruediger Pluem
On 09/26/2006 01:00 PM, Joe Orton wrote: On Tue, Sep 26, 2006 at 10:52:18AM +0200, Niklas Edmundsson wrote: This patch depends on mod_disk_cache LFS-aware config submitted earlier and is for trunk. It makes caching of large files possible on 32bit machines by: * Realising that a file is a

Re: svn commit: r450042 - in /httpd/httpd/trunk: CHANGES modules/cache/mod_disk_cache.c modules/cache/mod_disk_cache.h

2006-09-26 Thread Ruediger Pluem
On 09/26/2006 03:29 PM, wrote: Author: minfrin Date: Tue Sep 26 06:29:09 2006 New Revision: 450042 URL: http://svn.apache.org/viewvc?view=revrev=450042 Log: mod_disk_cache: Make sure that only positive integers are accepted for the CacheMaxFileSize and CacheMinFileSize parameters in the

Re: svn commit: r450105 - in /httpd/httpd/trunk: CHANGES modules/cache/mod_disk_cache.c modules/cache/mod_disk_cache.h

2006-09-26 Thread Ruediger Pluem
On 09/26/2006 06:26 PM, wrote: Author: minfrin Date: Tue Sep 26 09:26:56 2006 New Revision: 450105 Modified: httpd/httpd/trunk/modules/cache/mod_disk_cache.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/mod_disk_cache.c?view=diffrev=450105r1=450104r2=450105

Re: svn commit: r450188 - /httpd/httpd/trunk/modules/cache/mod_disk_cache.c

2006-09-26 Thread Ruediger Pluem
On 09/26/2006 10:35 PM, wrote: Author: minfrin Date: Tue Sep 26 13:35:42 2006 New Revision: 450188 Modified: httpd/httpd/trunk/modules/cache/mod_disk_cache.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/mod_disk_cache.c?view=diffrev=450188r1=450187r2=450188

Re: svn commit: r450188 - /httpd/httpd/trunk/modules/cache/mod_disk_cache.c

2006-09-27 Thread Ruediger Pluem
On 09/27/2006 12:22 AM, Graham Leggett wrote: Ruediger Pluem wrote: Are we sure that we do not iterate too often ( 100) over this during the lifetime of a request? I would say 'No, we do not iterate too often', but I think a crosscheck by someone else is a good idea. Otherwise we would

Re: mod_proxy and balancer problems

2006-09-29 Thread Ruediger Pluem
On 09/29/2006 09:53 AM, Mathias Herberts wrote: So redirection is only used when handling session bound requests which is exactly the opposite of what the documentation said. The goal of graceful worker shutdown is therefore not achieved as there is no way to have session bound requests

Re: svn commit: r451006 - in /httpd/httpd/trunk/modules/generators: mod_cgi.c mod_cgid.c

2006-09-29 Thread Ruediger Pluem
On 09/29/2006 03:49 PM, Garrett Rooney wrote: On 9/29/06, Joe Orton [EMAIL PROTECTED] wrote: On Thu, Sep 28, 2006 at 08:15:44PM -, [EMAIL PROTECTED] wrote: --- httpd/httpd/trunk/modules/generators/mod_cgi.c (original) +++ httpd/httpd/trunk/modules/generators/mod_cgi.c Thu Sep 28

Re: mod_proxy and balancer problems

2006-09-29 Thread Ruediger Pluem
On 09/29/2006 06:28 PM, Joost de Heer wrote: I tend to say that disabled means: Take requests if their routing information matches mine but no other ones. stopped means: Take no requests at all. enabled means: Take all requests. Wouldn't 'standby' be a better name for

Re: svn commit: r451575 - in /httpd/httpd/trunk/modules/proxy: mod_proxy.c mod_proxy.h proxy_util.c

2006-09-30 Thread Ruediger Pluem
On 09/30/2006 12:41 PM, wrote: Author: mturk Date: Sat Sep 30 03:41:51 2006 New Revision: 451575 URL: http://svn.apache.org/viewvc?view=revrev=451575 Log: Enable retry=0 for the worker. This allows to have an option to always retry the workers in error state instead using a specified

Re: svn commit: r451582 - /httpd/httpd/trunk/modules/proxy/mod_proxy.h

2006-10-02 Thread Ruediger Pluem
On 09/30/2006 01:26 PM, [EMAIL PROTECTED] wrote: Author: mturk Date: Sat Sep 30 04:26:26 2006 New Revision: 451582 URL: http://svn.apache.org/viewvc?view=revrev=451582 Log: Move new struct member to the end of the struct, so we can keep the compatibility. Sorry for nitpicking, but I am

Re: Coding style

2006-10-02 Thread Ruediger Pluem
On 10/02/2006 08:59 PM, Garrett Rooney wrote: On 10/2/06, Nick Kew [EMAIL PROTECTED] wrote: We have a bunch of new bug reports[1], detailing bugs of the form if ((rv = do_something(args) == APR_SUCCESS)) for if ((rv = do_something(args)) == APR_SUCCESS) Of course, that's a C

Re: svn commit: r451580 - /httpd/httpd/trunk/modules/proxy/proxy_util.c

2006-10-02 Thread Ruediger Pluem
On 09/30/2006 01:04 PM, wrote: Author: mturk Date: Sat Sep 30 04:04:46 2006 New Revision: 451580 URL: http://svn.apache.org/viewvc?view=revrev=451580 Log: Add alternative is_socket_connected implementation. It works on win32 and linux for sure, so that's why I put it inside the #ifdef.

Re: Coding style

2006-10-02 Thread Ruediger Pluem
On 10/02/2006 11:15 PM, Joachim Zobel wrote: Am Montag, den 02.10.2006, 19:56 +0100 schrieb Nick Kew: Can I suggest adopting this as a guideline for new code, to avoid this kind of bug? Is there an apache coding style guide? Yes of course: http://httpd.apache.org/dev/styleguide.html

Re: Coding style

2006-10-02 Thread Ruediger Pluem
On 10/02/2006 11:12 PM, Nick Kew wrote: On Monday 02 October 2006 21:39, Ruediger Pluem wrote: In general I agree with the above, but there are situations were the old style really makes sense, e.g (from log_child in server/log.c): if (((rc = apr_procattr_create(procattr, p

Re: svn commit: r451580 - /httpd/httpd/trunk/modules/proxy/proxy_util.c

2006-10-05 Thread Ruediger Pluem
On 05.10.2006 14:08, Jim Jagielski wrote: On Oct 2, 2006, at 4:45 PM, Ruediger Pluem wrote: On 09/30/2006 01:04 PM, wrote: Author: mturk Date: Sat Sep 30 04:04:46 2006 New Revision: 451580 URL: http://svn.apache.org/viewvc?view=revrev=451580 Log: Add alternative is_socket_connected

Re: mod_proxy and balancer problems

2006-10-07 Thread Ruediger Pluem
On 10/05/2006 11:07 AM, Mathias Herberts wrote: As I mentioned a few days ago here are my patches for mod_proxy. They modify mod_proxy behaviour in several ways to better fit our production environment where we heavily use Apache and Tomcat. Just so you understand our context, we use a

Re: svn commit: r454683 - in /httpd/httpd/trunk: CHANGES docs/manual/mod/mod_rewrite.xml modules/mappers/mod_rewrite.c

2006-10-10 Thread Ruediger Pluem
On 10/10/2006 12:33 PM, wrote: Author: niq Date: Tue Oct 10 03:33:06 2006 New Revision: 454683 URL: http://svn.apache.org/viewvc?view=revrev=454683 Log: Add SQL Query capability to RewriteMap Modified: httpd/httpd/trunk/modules/mappers/mod_rewrite.c URL:

Re: svn commit: r462594 - /httpd/httpd/branches/2.2.x/STATUS

2006-10-10 Thread Ruediger Pluem
On 10/10/2006 11:58 PM, wrote: Author: minfrin Date: Tue Oct 10 14:58:29 2006 New Revision: 462594 URL: http://svn.apache.org/viewvc?view=revrev=462594 Log: Propose some backports. Modified: httpd/httpd/branches/2.2.x/STATUS Modified: httpd/httpd/branches/2.2.x/STATUS URL:

Re: svn commit: r462696 - in /httpd/httpd/trunk: CHANGES modules/cache/mod_disk_cache.c modules/cache/mod_disk_cache.h

2006-10-11 Thread Ruediger Pluem
On 10/11/2006 06:31 AM, wrote: Author: minfrin Date: Tue Oct 10 21:31:18 2006 New Revision: 462696 URL: http://svn.apache.org/viewvc?view=revrev=462696 Log: mod_disk_cache: Implement read-while-caching. Modified: httpd/httpd/trunk/CHANGES

Issue with persistent http proxy backend connection

2006-10-11 Thread Ruediger Pluem
There is an issue with the proxy code that if a request is sent over a persistent backend connection (currently only looking at the http case, not sure if the same thing can happen for other backends like ajp and fastcgi) it could happen that this connection gets closed by the backend for timeout

Re: Issue with persistent http proxy backend connection

2006-10-12 Thread Ruediger Pluem
On 10/11/2006 11:09 PM, Jeff Trawick wrote: On 10/11/06, Ruediger Pluem [EMAIL PROTECTED] wrote: 2. Although GET is mentioned to be idempotent in RFC 2616 (9.1.2) along with some other methods it is not a good idea to regard a GET / HEAD with query parameters to be idempotent

Re: Issue with persistent http proxy backend connection

2006-10-12 Thread Ruediger Pluem
On 10/11/2006 11:09 PM, Jeff Trawick wrote: On 10/11/06, Ruediger Pluem [EMAIL PROTECTED] wrote: 3. Sometimes servers (including httpd) include a keep-alive header in their response with the parameter timeout set. This can give a hint when the backend will close its persistent

Re: Issue with persistent http proxy backend connection

2006-10-12 Thread Ruediger Pluem
On 12.10.2006 13:26, Mladen Turk wrote: Ruediger Pluem wrote: But yes, in theory their remains a race here if the proxy reuses the connection faster then the backend needs time to close the socket after sending the response. Does the problem exists with the current trunk as well

[Fwd: Re: svn commit: r467655 - in /httpd/httpd/trunk: CHANGES docs/manual/mod/mod_cache.xml modules/cache/mod_cache.c modules/cache/mod_cache.h]

2006-10-28 Thread Ruediger Pluem
On 10/27/2006 09:41 PM, William A. Rowe, Jr. wrote: Graham Leggett wrote: I see lots of comments on the code, but the comments are summarised as the cache is fine as it is. It isn't. If it was fine, key users of network caching wouldn't be standing up saying they're using something else.

[Fwd: Re: Apache 2.2.3 mod_proxy issue]

2006-10-28 Thread Ruediger Pluem
On 10/27/2006 06:20 PM, Jess Holle wrote: On the other hand, if I use: ProxyPass /jsp-examples ajp://localhost:8010/jsp-examples This works fine! I assume I should file a bug against mod_proxy -- or is this a known issue? At least it is known to me :-). See

[Fwd: Re: Input Filter reading Body]

2006-10-28 Thread Ruediger Pluem
On 10/20/2006 05:03 PM, Christian Verdelli wrote: static int redirect_wmlInFilter (ap_filter_t* f, apr_bucket_brigade* brigade, ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) { apr_bucket* bucket ; apr_status_t ret ; if ( ret = ap_get_brigade(f-next, brigade, mode,

[Fwd: [Fwd: Re: apr_brigade_create() produces a corrupt brigade]]

2006-10-28 Thread Ruediger Pluem
Oops, wrong list. Original Message Subject: [Fwd: Re: apr_brigade_create() produces a corrupt brigade] Date: Sat, 28 Oct 2006 12:02:57 +0200 From: Ruediger Pluem [EMAIL PROTECTED] To: dev@httpd.apache.org On 10/26/2006 09:48 PM, Graham Leggett wrote: Hi all, I have spent

Re: [Fwd: Re: svn commit: r466865 - in /httpd/httpd/trunk: CHANGES docs/manual/mod/mod_authn_dbd.xml modules/aaa/mod_auth.h modules/aaa/mod_authn_dbd.c modules/aaa/mod_authnz_ldap.c]

2006-10-29 Thread Ruediger Pluem
. On 10/29/2006 01:50 PM, Graham Leggett wrote: Ruediger Pluem wrote: Does it really make sense to put this in the same environment namespace? What if we have rows with the same name here and for the password query? Shouldn't the prefix be AUTHN_PREFIX + (USER_|PASSWORD_)? My

Re: [Fwd: Re: svn commit: r467655 - in /httpd/httpd/trunk: CHANGES docs/manual/mod/mod_cache.xml modules/cache/mod_cache.c modules/cache/mod_cache.h]

2006-10-29 Thread Ruediger Pluem
On 10/29/2006 01:56 PM, Graham Leggett wrote: Ruediger Pluem wrote: Apart from this, Paul created a branch a while ago for mod_cache refactoring. As it has turned out the whole thing creates some bigger discussion and patches go in and out. So I think it would be a good idea to do

Re: [Fwd: Re: apr_brigade_create() produces a corrupt brigade]

2006-10-29 Thread Ruediger Pluem
On 10/29/2006 01:59 PM, Graham Leggett wrote: Ruediger Pluem wrote: This runs fine - a brigade is created, containing a single bucket. The trouble is, the bucket inside the brigade is corrupt - it's name consists of random bytes, and the pointers to its methods are either Maybe stupid

Re: [Fwd: Re: Apache 2.2.3 mod_proxy issue]

2006-10-29 Thread Ruediger Pluem
On 10/28/2006 05:26 PM, Jim Jagielski wrote: Ruediger Pluem wrote: On 10/27/2006 06:20 PM, Jess Holle wrote: On the other hand, if I use: ProxyPass /jsp-examples ajp://localhost:8010/jsp-examples This works fine! I assume I should file a bug against mod_proxy

Re: [Fwd: Re: svn commit: r466865 - in /httpd/httpd/trunk: CHANGES docs/manual/mod/mod_authn_dbd.xml modules/aaa/mod_auth.h modules/aaa/mod_authn_dbd.c modules/aaa/mod_authnz_ldap.c]

2006-10-29 Thread Ruediger Pluem
On 10/29/2006 03:47 PM, Graham Leggett wrote: Ruediger Pluem wrote: Yes, this is correct. It is set by AuthDBDUserPWQuery. What sql statement would correspond with USER_ above? The one set by AuthDBDUserRealmQuery. It is used inside authn_dbd_realm OK, USER_ might the wrong word

Re: [Fwd: Re: apr_brigade_create() produces a corrupt brigade]

2006-10-29 Thread Ruediger Pluem
On 10/29/2006 03:53 PM, Graham Leggett wrote: Ruediger Pluem wrote: Just two curious questions: 1. Did APR_BRIGADE_EMPTY return true on this newly created brigade? No idea, didn't try it. 2. Shouldn't the code take care never to process the sentinel because of the problems you

Re: [Fwd: Re: Apache 2.2.3 mod_proxy issue]

2006-10-29 Thread Ruediger Pluem
On 10/29/2006 04:15 PM, Jess Holle wrote: Ruediger Pluem wrote: I guess we should create a directive like DefineWorker (I do not really care about the exact name), that enables the administrator to define / create a worker. That would be really handy for mod_rewrite as in the reverse

Re: mod_cache summary and plan

2006-10-29 Thread Ruediger Pluem
On 10/29/2006 04:39 PM, Davi Arnaut wrote: Graham Leggett wrote: Davi Arnaut wrote: . Problem: You have described two separate problems below. No, and it's seems you are deeply confused on what buckets and brigades represent. You already committed what ? four fixes to the same

Re: [Fwd: Re: Apache 2.2.3 mod_proxy issue]

2006-10-29 Thread Ruediger Pluem
On 10/29/2006 05:42 PM, Mladen Turk wrote: Ruediger Pluem wrote: I guess we should create a directive like DefineWorker (I do not really care about the exact name), that enables the administrator to define / create a worker. Then you can easily just use Proxy ajp://localhost:8009

Re: AW: mod_deflate and flush?

2006-10-29 Thread Ruediger Pluem
On 10/25/2006 04:46 PM, Sven Köhler wrote: Hi, JSP (via mod_jk) and maybe other plugins sometimes flush the connection, so that the browsers receive everything that's stuck in some internal buffer. Here's a quote from mod_jk's docs: JkOptions +FlushPackets JkOptions FlushPackets, you ask

Re: AW: mod_deflate and flush?

2006-10-29 Thread Ruediger Pluem
On 10/29/2006 11:41 PM, Nick Kew wrote: On Sun, 2006-10-29 at 23:21 +0100, Ruediger Pluem wrote: Backport to 2.2.x ? I'm still using 2.0.x - LOL. Have you tried to apply the patches for 2.2.x to 2.0.x? I haven't tried so, but I think mod_deflate has not changed that much between 2.2.x

Re: cache: the store_body interface

2006-10-30 Thread Ruediger Pluem
On 10/30/2006 07:53 PM, Graham Leggett wrote: Justin Erenkrantz wrote: 1) change the store_body interface to allow the storage provider direct access to f-next, so it can flush buckets up the output filter chain when they have been stored. As seen on trunk. I am with Justin here. Dealing

Re: AW: [Fwd: Re: Apache 2.2.3 mod_proxy issue]

2006-10-31 Thread Ruediger Pluem
On 10/31/2006 08:59 PM, Jim Jagielski wrote: Ruediger Pluem wrote: Maybe I am just missing the important point, but I think total req-per-sec and round trip time are coupled to some limit. They are coupled, of course. The question is whether the additional overhead of a full regex

Re: svn commit: r468373 - in /httpd/httpd/trunk: CHANGES modules/cache/mod_cache.c modules/cache/mod_cache.h modules/cache/mod_disk_cache.c modules/cache/mod_disk_cache.h modules/cache/mod_mem_cache.c

2006-11-01 Thread Ruediger Pluem
On 10/27/2006 03:28 PM, [EMAIL PROTECTED] wrote: Author: minfrin Date: Fri Oct 27 06:28:56 2006 New Revision: 468373 URL: http://svn.apache.org/viewvc?view=revrev=468373 Log: mod_cache: Pass the output filter stack through the store_body() hook, giving each cache backend the ability to

Re: svn commit: r468373 - in /httpd/httpd/trunk: CHANGES modules/cache/mod_cache.c modules/cache/mod_cache.h modules/cache/mod_disk_cache.c modules/cache/mod_disk_cache.h modules/cache/

2006-11-01 Thread Ruediger Pluem
On 11/01/2006 02:30 PM, Graham Leggett wrote: On Wed, November 1, 2006 2:51 pm, Ruediger Pluem wrote: This breaks compilation of mod_disk_cache on systems that have APR_HAS_SENDFILE set. This was fixed in a commit shortly after. I have svn up to the latest revision and it is not fixed

Re: svn commit: r468373 - in /httpd/httpd/trunk: CHANGES modules/cache/mod_cache.c modules/cache/mod_cache.h modules/cache/mod_disk_cache.c modules/cache/mod_disk_cache.h

2006-11-01 Thread Ruediger Pluem
On 11/01/2006 06:02 PM, Graham Leggett wrote: On Wed, November 1, 2006 5:48 pm, Ruediger Pluem wrote: I have svn up to the latest revision and it is not fixed. If you still think that it is fixed please point me to the revision that should have fixed it and I will have a look if something

Re: Backport for mod_proxy_balancer env additions [Was: load balancer and http(s) sticky sessions]

2006-11-04 Thread Ruediger Pluem
On 11/03/2006 10:32 PM, Brian Rectanus wrote: Here is a backport to 2.2.x branch with my env vars (code and docs) from trunk and your BALANCER_ROUTE_CHANGED addition with docs as well. Would you please apply? I proposed the appropriate revisions from trunk for backport as r471271

Re: mod_wombat

2006-11-08 Thread Ruediger Pluem
On 11/08/2006 07:31 PM, Brian McCallister wrote: On Nov 8, 2006, at 10:27 AM, Nick Kew wrote: Just to be clear about it: presumably you're proposing it have a similar kind of status to mod_perl or mod_python? Yes. +1 for this if it is a subproject like mod_perl or mod_python. It may

Re: mod_wombat

2006-11-08 Thread Ruediger Pluem
On 11/08/2006 07:16 PM, Paul Querna wrote: I am personally interested in it because I believe it could be one of the paths taken for an httpd 3.0 in which Lua was embedded, replacing the config system and other large areas of C code. What is bad about the C code? Regards Rüdiger

Version 2.0.59 missing in bugzilla.

2006-11-08 Thread Ruediger Pluem
Could someone please add version 2.0.59 to bugzilla for the product Apache httpd-2? Thanks and regards Rüdiger

Re: Apache BUG: 36495 : ajp_proxy_connect_backend failure

2006-11-08 Thread Ruediger Pluem
On 11/08/2006 08:18 AM, Benjamin Cuthbert wrote: This happens when i have one connection to the tomcat jboss server. Sorry for a possible confusion I might create. As the patch Mladen talks about was backported today you can checkout the latest 2.2.x branch via svn export

Re: Is ap_pass_brigade sychronous

2006-11-08 Thread Ruediger Pluem
On 11/08/2006 07:30 PM, Joachim Zobel wrote: Hi. I would like to know if ap_pass_brigade is and will remain synchronous on all mpms. Can I assume that all memory used by the passed buckets can be freed after calling ap_pass_brigade? I cannot predict the future for major releases, but for

Re: Apache BUG: 36495 : ajp_proxy_connect_backend failure

2006-11-08 Thread Ruediger Pluem
On 11/08/2006 10:28 PM, Ruediger Pluem wrote: On 11/08/2006 08:18 AM, Benjamin Cuthbert wrote: This happens when i have one connection to the tomcat jboss server. Sorry for a possible confusion I might create. As the patch Mladen talks about was backported today you can checkout

Re: http://svn.apache.org/viewvc?view=revrevision=426799

2006-11-15 Thread Ruediger Pluem
On 11/15/2006 03:24 PM, Nick Kew wrote: I've been trying to review the mod_deflate updates. Thanks for doing so. I really appreciate this. The deflate filter stuff looks good. But I'm confused by the validation buffer usage in the input filter. You only allocate a validation buffer at

Re: http://svn.apache.org/viewvc?view=revrevision=426799

2006-11-16 Thread Ruediger Pluem
On 11/16/2006 02:25 PM, Plüm wrote: -Ursprüngliche Nachricht- Von: Nick Kew Gesendet: Donnerstag, 16. November 2006 02:36 On Wed, 15 Nov 2006 21:33:07 +0100 Ruediger Pluem [EMAIL PROTECTED] wrote: Because of your question I had to rewalk the code path and I think I found two other

Re: mod_proxy pending patches

2006-11-25 Thread Ruediger Pluem
On 11/25/2006 04:04 PM, Mladen Turk wrote: Hi, There are some pending mod_proxy patches for 2.2.x. I would like to push some testing on the http://svn.apache.org/viewvc?view=revrevision=468941 (explicit flushing from recent Tomcats) Got my +1. and

Re: svn commit: r480135 - /httpd/httpd/trunk/modules/http/http_filters.c

2006-11-28 Thread Ruediger Pluem
On 11/28/2006 07:05 PM, Joe Orton wrote: On Tue, Nov 28, 2006 at 05:36:55PM -, Jim Jagielski wrote: Author: jim Date: Tue Nov 28 09:36:45 2006 New Revision: 480135 URL: http://svn.apache.org/viewvc?view=revrev=480135 Log: Apply patch for PR 41056 (19954) to fix chunk filter. Now flushes

Re: vote on concept of ServerTokens Off

2006-12-05 Thread Ruediger Pluem
On 12/05/2006 07:16 PM, Jim Jagielski wrote: On Dec 5, 2006, at 7:23 AM, Joe Orton wrote: On Tue, Dec 05, 2006 at 06:39:30AM -0500, Jeff Trawick wrote: A lot of opinions were offered back in August. Some were negative but I don't see anything that looks like a veto.

Re: svn commit: r484792 - in /httpd/httpd/trunk/modules/proxy: mod_proxy_balancer.c mod_proxy_ftp.c proxy_util.c

2006-12-08 Thread Ruediger Pluem
On 12/08/2006 10:37 PM, [EMAIL PROTECTED] wrote: Author: jim Date: Fri Dec 8 13:37:08 2006 New Revision: 484792 URL: http://svn.apache.org/viewvc?view=revrev=484792 Log: Failure to unlock is very nasty, so log it to help with troubleshooting. Modified:

Re: Wrong etag sent with mod_deflate

2006-12-09 Thread Ruediger Pluem
On 12/09/2006 06:52 AM, Roy T. Fielding wrote: The best solution is to not mess with content-encoding at all, which gets us out of both this consistency problem and related problems with the entity-header fields (content-md5, signatures, etc.). That is why transfer encoding was invented

Re: Wrong etag sent with mod_deflate

2006-12-09 Thread Ruediger Pluem
On 12/09/2006 03:23 PM, Justin Erenkrantz wrote: On 12/9/06, Ruediger Pluem [EMAIL PROTECTED] wrote: Would the following patch address all your points for a CE mod_deflate filter? No - this patch breaks conditional GETs which is what I'm against. Ok, to be honest my question was more

Re: Wrong etag sent with mod_deflate

2006-12-09 Thread Ruediger Pluem
On 12/09/2006 07:02 PM, Justin Erenkrantz wrote: On 12/9/06, Ruediger Pluem [EMAIL PROTECTED] wrote: Thanks for giving the pointer to ap_meets_conditions. So content compressed by mod_deflate would not stand conditional requests based on ETags any longer. That would be bad. Would it help

Re: PATCH #40075 - using ldap groups that contain DNs and usernames for AuthZ

2006-12-18 Thread Ruediger Pluem
On 12/18/2006 08:27 PM, Johanna Bromberg Craig wrote: Hey, I know that Brad said he's been slammed at day job work and as such has not been able to find time to review my most recent changes to my patch, but I'm just sending out my weekly nudge as I'm also under I had a look at the

Re: Apache BUG: 36495 : ajp_proxy_connect_backend failure

2006-12-20 Thread Ruediger Pluem
On 12/20/2006 08:45 PM, Sander Temme wrote: On Dec 20, 2006, at 9:52 AM, Benjamin Cuthbert wrote: Do you need to checkout head for apr and apr-util ? You only need to do this if you are working with httpd code you checked out from svn. Once you are hacking on a released source tarball

Re: svn commit: r490142 - /httpd/httpd/trunk/modules/mappers/mod_alias.c

2006-12-25 Thread Ruediger Pluem
On 12/25/2006 01:06 PM, wrote: Author: niq Date: Mon Dec 25 04:06:33 2006 New Revision: 490142 URL: http://svn.apache.org/viewvc?view=revrev=490142 Log: PR#35314: Enable path components in Redirect Modified: httpd/httpd/trunk/modules/mappers/mod_alias.c Modified:

Re: archive.apache.org issues

2006-12-29 Thread Ruediger Pluem
On 12/29/2006 06:17 AM, Paul Querna wrote: Ya, I'm not sure why that is happening either. This works: http://archive.apache.org/dist/ And so does this: http://archive.apache.org/index.html But this: http://archive.apache.org/ Does not. So, the error log has: [Fri Dec 29

Re: archive.apache.org issues

2006-12-30 Thread Ruediger Pluem
On 12/30/2006 01:07 AM, Ruediger Pluem wrote: On 12/29/2006 06:17 AM, Paul Querna wrote: Ya, I'm not sure why that is happening either. This works: http://archive.apache.org/dist/ And so does this: http://archive.apache.org/index.html But this: http://archive.apache.org/ Does not. So

Re: archive.apache.org issues

2006-12-30 Thread Ruediger Pluem
On 12/30/2006 06:32 PM, Jim Jagielski wrote: Justin Erenkrantz wrote: On 12/30/06, Ruediger Pluem [EMAIL PROTECTED] wrote: Digging somewhat deeper it turns out that adding APR_FINFO_NAME to the list of wanted information causes this apr_stat to return always APR_INCOMPLETE on Unix

Re: archive.apache.org issues

2007-01-02 Thread Ruediger Pluem
On 12/31/2006 08:17 PM, William A. Rowe, Jr. wrote: Justin Erenkrantz wrote: On 12/30/06, Ruediger Pluem [EMAIL PROTECTED] wrote: Digging somewhat deeper it turns out that adding APR_FINFO_NAME to the list of wanted information causes this apr_stat to return always APR_INCOMPLETE on Unix

Re: [VOTE] httpd-2.2.4 release candidate for review

2007-01-06 Thread Ruediger Pluem
On 01/06/2007 08:41 AM, William A. Rowe, Jr. wrote: http://httpd.apache.org/dev/dist/ will soon (within the hour, upon resync) contain the following tarballs for approval httpd-2.2.4.tar.bz2 [.asc|.md5] .asc / .md5 OK httpd-2.2.4.tar.gz [.asc|.md5] .asc / .md5 OK +1 on Solaris 8 / 9,

Re: [VOTE] httpd-2.2.4 release candidate for review

2007-01-07 Thread Ruediger Pluem
On 01/07/2007 08:16 AM, William A. Rowe, Jr. wrote: Ruediger Pluem wrote: -0 on SuSE Linux 10.1 x86_64, gcc 4.1.0 Due to the apr-util bug 41308 (http://issues.apache.org/bugzilla/show_bug.cgi?id=41308) the 64 bit build does not work if a system wide 32 bit expat library is present. Can

Re: mod_authn_dbd and apr_password_validate

2007-01-08 Thread Ruediger Pluem
On 01/08/2007 05:08 PM, Patrick Welche wrote: First an apology for posting to dev: I thought there was at least a documentation issue, but no: AuthDBDUserPWQuery Directive ... SQL varchar) argument (username), and return a single value (encrypted password).

Re: Piped logger nightmares

2007-01-09 Thread Ruediger Pluem
On 01/09/2007 06:56 PM, Sander Temme wrote: On Jan 9, 2007, at 9:41 AM, William A. Rowe, Jr. wrote: So by changing from the pipe to the shell, we blew up in the service process on some boxes (XP at least). Sander reports it does not die as a service on Windows 2003, but apparently EOS

Re: process the request

2007-01-09 Thread Ruediger Pluem
On 01/09/2007 08:52 PM, Sander Temme wrote: Frankie, On Jan 9, 2007, at 11:37 AM, 张 臻博 wrote: Thanks all for your valuable answer. I think now i am clear. Acturally, I am now trying to write some new code for Apache. It makes Apache be possible to be used in another protocol layer...

Re: process the request

2007-01-09 Thread Ruediger Pluem
On 01/09/2007 10:23 PM, Ruediger Pluem wrote: On 01/09/2007 08:52 PM, Sander Temme wrote: Frankie, On Jan 9, 2007, at 11:37 AM, 张 臻博 wrote: Thanks all for your valuable answer. I think now i am clear. Acturally, I am now trying to write some new code for Apache. It makes Apache

Re: 2.2.4 windows binary w/ssl?

2007-01-10 Thread Ruediger Pluem
On 01/10/2007 10:40 PM, William A. Rowe, Jr. wrote: Does this sound sane? +1 Regards Rüdiger

Add 2.2.4 to bugzilla

2007-01-11 Thread Ruediger Pluem
Hi, could someone please add version 2.2.4 to the product Apache httpd-2 in bugzilla? Are there any ideas how we can document / automate this as part of the release process? This issue pops up regulary after each release. Regards Rüdiger

Re: Add 2.2.4 to bugzilla

2007-01-11 Thread Ruediger Pluem
On 01/11/2007 10:12 PM, Sander Temme wrote: On Jan 11, 2007, at 12:42 PM, Ruediger Pluem wrote: could someone please add version 2.2.4 to the product Apache httpd-2 in bugzilla? Done. Thanks. Are there any ideas how we can document / automate this as part of the release

Re: Add 2.2.4 to bugzilla

2007-01-11 Thread Ruediger Pluem
On 01/11/2007 10:22 PM, William A. Rowe, Jr. wrote: Ruediger Pluem wrote: Hi, could someone please add version 2.2.4 to the product Apache httpd-2 in bugzilla? Are there any ideas how we can document / automate this as part of the release process? This issue pops up regulary after each

Re: Add 2.2.4 to bugzilla

2007-01-12 Thread Ruediger Pluem
On 01/12/2007 11:14 PM, Sander Temme wrote: On Jan 12, 2007, at 1:04 PM, Roy T. Fielding wrote: On Jan 12, 2007, at 3:33 AM, Joe Orton wrote: What is the difference between a RESOLVED bug and a CLOSED one? Is it not possible to re-open/add comments to CLOSED reports or something?

Re: Mod_cache expires check

2007-01-17 Thread Ruediger Pluem
On 01/15/2007 01:56 PM, Bart van der Schans wrote: In r463496 the following check was added to mod_cache.c : else if (exp != APR_DATE_BAD exp r-request_time) { /* if a Expires header is in the past, don't cache it */ reason = Expires header already expired, not

Re: Mod_cache expires check

2007-01-18 Thread Ruediger Pluem
On 01/18/2007 12:49 PM, Henrik Nordstrom wrote: tor 2007-01-18 klockan 12:05 +0100 skrev Plüm, Rüdiger, VF EITO: Any valid date which can be represented in the textual form is a valid Expires header. And any Expires header you can not understand for whatever reason is already expired in

Re: Vote request: Accept mod_ftp podling for graduation

2007-01-18 Thread Ruediger Pluem
On 01/18/2007 06:01 PM, Justin Erenkrantz wrote: On 1/18/07, Jim Jagielski [EMAIL PROTECTED] wrote: The mod_ftp PPMC has voted on graduation and it was approved[1]. We are now asking the httpd PMC to approve graduation. +1. One topic for discussion is whether it should be a

Re: overflow in mod_autoindex suspected - solaris - httpd 2.2.*

2007-01-18 Thread Ruediger Pluem
On 01/18/2007 01:28 PM, Zvi Har'El wrote: I believe this is really a problem of the HTTP client protocol level. in HTTP/1.1 we get a failure, and HTTP/1.0 or HTTPS (1.1 or 1.0) success, for example: Could you please do the following tests independently: 1. Change the ForceType in your

Re: overflow in mod_autoindex suspected - solaris - httpd 2.2.*

2007-01-18 Thread Ruediger Pluem
On 01/18/2007 10:08 PM, Zvi Har'El wrote: I Tried the two settings, independently: 1) changes the line ForceType text/html to ForceType tex/plain in my .htaccess. 2) put a line EnableSendFile off in my .htaccess (.htaccess is located at the parent directory of the directory which

Re: mod_cache+mod_rewrite behaviour

2007-01-21 Thread Ruediger Pluem
On 01/21/2007 04:09 PM, Scott MacVicar wrote: We did use mod_expires but the Expires header was being passed on to the client, mod_headers didn't appear to be able to unset this during tests. This is true, but what is the problem with passing the Expires header to the client? If you want to

Re: mod_cache+mod_rewrite behaviour

2007-01-21 Thread Ruediger Pluem
On 01/21/2007 05:55 PM, Scott MacVicar wrote: Ruediger Pluem wrote: On 01/21/2007 04:09 PM, Scott MacVicar wrote: We did use mod_expires but the Expires header was being passed on to the client, mod_headers didn't appear to be able to unset this during tests. This is true, but what

Re: setting request timeout in mod_proxy/mod_proxy_balancer

2007-01-22 Thread Ruediger Pluem
On 01/22/2007 08:29 PM, Lucas Brasilino wrote: Hi All: As I point out in: http://mail-archives.apache.org/mod_mbox/httpd-users/200701.mbox/raw/[EMAIL PROTECTED] Based on your configuration from above, the following should work: ProxyRequests Off Proxy balancer://webcluster

Re: svn commit: r490156 - /httpd/httpd/trunk/modules/metadata/mod_headers.c

2007-01-23 Thread Ruediger Pluem
On 12/25/2006 06:40 PM, [EMAIL PROTECTED] wrote: Author: niq Date: Mon Dec 25 09:40:10 2006 New Revision: 490156 URL: http://svn.apache.org/viewvc?view=revrev=490156 Log: PR#36609 - permit % as the last character of a Header value Modified:

Re: [PATCH] mod_autoindex character set

2007-02-01 Thread Ruediger Pluem
On 02/01/2007 06:13 PM, William A. Rowe, Jr. wrote: Dr. Peter Poeml wrote: On Thu, Feb 01, 2007 at 10:59:46 +, Joe Orton wrote: On Wed, Jan 31, 2007 at 09:45:12PM +0100, Dr. Peter Poeml wrote: Users have a problem with directory listings generated by mod_autoindex: It is not possible to

Bumping question

2007-02-05 Thread Ruediger Pluem
Would the following change in mod_cache.h require a major bump or would a minor bump be enough? Index: mod_cache.h === --- mod_cache.h (Revision 503593) +++ mod_cache.h (Arbeitskopie) @@ -314,7 +314,7 @@

Re: Bumping question

2007-02-05 Thread Ruediger Pluem
On 02/06/2007 04:16 AM, William A. Rowe, Jr. wrote: Ruediger Pluem wrote: As 3rd parties might want to use the provider interface to provide their own storage providers it might be worth discussing if we *should* make this a public API and should install it via make install. Someone

  1   2   3   4   5   6   7   8   9   10   >