Re: new ETag supression/weakening API

2003-12-15 Thread Roy T. Fielding
BTW, an entity tag does not identify the entity -- it merely acts as a key for cache and range request handling. right. and what I was trying to do was make it possible for content-altering filters to handle that key a bit more intelligently than just removing it altogether. the situation I init

Help with RMI over HTTPS

2003-12-15 Thread Ramanan
Hi, How do we configure Apache to support RMI over HTTPS on Windows 2000? I am seeing the following POST request being made : /cgi-bin/java-rmi.cgi?forward=5000 The RMI POST request should be forwarded to the Tomcat server which uses the servlet approach. The servlet defined is ca

Re: new ETag supression/weakening API

2003-12-15 Thread Geoffrey Young
Roy T. Fielding wrote: >> one of the issues that needed working out was dealing with multiple ETag >> headers. my original idea was to have ap_weaken_etag guarantee that ETag >> headers would be weak. with ETag headers entering err_headers_out via a >> third party, there exists the possibility

Re: new ETag supression/weakening API

2003-12-15 Thread Roy T. Fielding
RFC 2616, section 3.11, BNF does not allow multiple ETag header fields. ^ ^14.19 + 3.11 Roy

Re: new ETag supression/weakening API

2003-12-15 Thread Roy T. Fielding
one of the issues that needed working out was dealing with multiple ETag headers. my original idea was to have ap_weaken_etag guarantee that ETag headers would be weak. with ETag headers entering err_headers_out via a third party, there exists the possibility that the server would send multipl

Re: (detabifyied) Re: [PATCH] Page Fault in mod_mem_cache-steaming response

2003-12-15 Thread Bill Stoddard
Jean-Jacques Clar wrote: Just replaced tabs with spaces to follow guidelines. >>> [EMAIL PROTECTED] 12/11/2003 5:00:31 PM >>> Bugzilla Defect #21285 This is a rework of the already posted patch. It address the following situation; 1- request comes in for streaming response 2- before that reque

Re: cvs commit: httpd-2.0/modules/experimental mod_charset_lite.c

2003-12-15 Thread Bill Stoddard
[EMAIL PROTECTED] wrote: martin 2003/12/15 06:24:31 Modified:modules/experimental mod_charset_lite.c Log: Flame bait: mod_charset_lite would decide in the mime checker phase whether a conversion was required, and would stick with that decision, even if a later handler (like CGI

Re: new ETag supression/weakening API

2003-12-15 Thread Geoffrey Young
hi again... ok, I think I've worked out all the issues - attached is a new patch with logic (and spelling :) errors hopefully worked out. also included is a patch against the perl-framework for testing if you so choose. one of the issues that needed working out was dealing with multiple ETag hea

RE: [PATCH] Create plog pool before pconf

2003-12-15 Thread BLAKE,DAVID (HP-Boise,ex1)
In reference to bug 20462 I see you are tracking down the root cause of this problem. In doing some tracking on Windows with 2.0.47 I came up with a check that prevents the crash, though it doesn't by any means solve the bigger issue you are working on. My description of problem before seeing iss

Re: AddCharset filename extensions

2003-12-15 Thread Zvi Har'El
To make my point clearer, here is the patch: --- httpd-2.0.48/docs/conf/httpd-std.conf.in.~20031011014743~ 2003-10-11 03:47:43.0 +0200 +++ httpd-2.0.48/docs/conf/httpd-std.conf.in2003-12-15 18:47:07.0 +0200 @@ -797,11 +797,15 @@ AddCharset ISO-8859-2 .iso8859-2 .latin2 .

Re: cvs commit: httpd-2.0/modules/experimental mod_charset_lite.c

2003-12-15 Thread Brad Nicholes
-1 Please use some other #define. This won't build with Metrowerks on NetWare. Brad Brad Nicholes Senior Software Engineer Novell, Inc., the leading provider of Net business solutions http://www.novell.com >>> [EMAIL PROTECTED] Monday, December 15, 2003 8:18:05 AM >>> On Mon, Dec 15, 2003 at 0

Re: cvs commit: httpd-2.0/modules/experimental mod_charset_lite.c

2003-12-15 Thread Joe Orton
On Mon, Dec 15, 2003 at 02:24:31PM -, [EMAIL PROTECTED] wrote: ... > diff -u -u -r1.66 -r1.67 > --- mod_charset_lite.c 7 Nov 2003 01:01:27 - 1.66 > +++ mod_charset_lite.c 15 Dec 2003 14:24:31 - 1.67 > @@ -307,7 +307,16 @@ > "mime

Re: cvs commit: apache-1.3/src/main http_log.c util.c

2003-12-15 Thread André Malo
* Ben Laurie <[EMAIL PROTECTED]> wrote: > > -char errstr[MAX_STRING_LEN]; > > +char errstr[MAX_STRING_LEN], scratch[MAX_STRING_LEN]; > > Surely scratch and errstr should be MAX_STRING_LEN*4? Hmm. MAX_STRING_LEN is 8k. So we put 16k onto the stack now. Would you really like to mess up

Re: cvs commit: apache-1.3/src/main http_log.c util.c

2003-12-15 Thread Ben Laurie
[EMAIL PROTECTED] wrote: nd 2003/12/14 10:16:50 Modified:src CHANGES src/include ap_mmn.h httpd.h src/main http_log.c util.c Log: SECURITY [CAN-2003-0020]: escape arbitrary data before writing into the errorlog. Index: http_log.c ==