[STATUS] (flood) Wed Sep 24 23:47:38 EDT 2003

2003-09-25 Thread Rodent of Unusual Size
flood STATUS: -*-text-*- Last modified at [$Date: 2003/07/01 20:55:12 $] Release: 1.0: Released July 23, 2002 milestone-03: Tagged January 16, 2002 ASF-transfer: Released July 17, 2001 milestone-02: Tagged August 13,

Re: sticky preferences in Apache-Test

2003-09-25 Thread Randy Kobes
On Wed, 24 Sep 2003, Randy Kobes wrote: Hi, Below is a modified diff to allow for preferences to be saved to an Apache::TestConfigData for later use within Apache::Test. In this version, a user can create a $HOME/.apache-test/Apache/TestConfigData.pm to specify the preferences; this

RE: [STATUS] (perl-framework) Wed Sep 24 23:47:46 EDT 2003

2003-09-25 Thread Wood, Bryan
So it can't be used to test remote servers now? -Original Message- From: Rodent of Unusual Size [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 10:48 PM To: Apache test suite Subject: [STATUS] (perl-framework) Wed Sep 24 23:47:46 EDT 2003 httpd-test/perl-framework STATUS:

Re: [STATUS] (perl-framework) Wed Sep 24 23:47:46 EDT 2003

2003-09-25 Thread Sander Temme
So it can't be used to test remote servers now? This is correct. Perl-framework and httpd are required to be on the same host. S. -- Covalent Technologies [EMAIL PROTECTED] Engineering groupVoice: (415) 856 4214 303 Second Street #375 South Fax:

URLs containing colon: Win32 vs. Linux

2003-09-25 Thread Jeff Trawick
Does anybody have a quick answer, like can't have colon anywhere in uri path or we're busted or something else? URL is http://127.0.0.1:8080/dobedobedo;session=0:0 dobedobedo doesn't really exist Apache 2.0.47 on Win32: - 403 (no reason logged) Apache 2.0.47 on Linux: - 404 I'll try to

Re: URLs containing colon: Win32 vs. Linux

2003-09-25 Thread André Malo
Jeff Trawick wrote: Does anybody have a quick answer, like can't have colon anywhere in uri path or we're busted or something else? URL is http://127.0.0.1:8080/dobedobedo;session=0:0 dobedobedo doesn't really exist Apache 2.0.47 on Win32: - 403 (no reason logged) Can't have colon in

Re: URLs containing colon: Win32 vs. Linux

2003-09-25 Thread Jeff Trawick
André Malo wrote: Jeff Trawick wrote: Does anybody have a quick answer, like can't have colon anywhere in uri path or we're busted or something else? URL is http://127.0.0.1:8080/dobedobedo;session=0:0 dobedobedo doesn't really exist Apache 2.0.47 on Win32: - 403 (no reason logged) Can't

Re: URLs containing colon: Win32 vs. Linux

2003-09-25 Thread Günter Knauf
Hi Jeff, Does anybody have a quick answer, like can't have colon anywhere in uri path or we're busted or something else? URL is http://127.0.0.1:8080/dobedobedo;session=0:0 dobedobedo doesn't really exist Apache 2.0.47 on Win32: - 403 (no reason logged) Apache 2.0.47 on Linux: -

Re: URLs containing colon: Win32 vs. Linux

2003-09-25 Thread Jeff Trawick
Jeff Trawick wrote: It's probably apr_filepath_merge in server/core.c:ap_core_translate (cannot verify from here). That was my top suspect. I'll see if I can build on Windows and fix the logging in this area. yep, it was ap_translate_name() This is a lot better than the previous silence:

Re: URLs containing colon: Win32 vs. Linux

2003-09-25 Thread Brad Nicholes
We have seen this before on NetWare. The reason why NetWare and Win32 return a 403 is because they both use drives and paths separated by a ':' in their file paths and they both share the same filepath.c code. If I remember right, it gets caught in apr_filepath_merge() because of a bad path.

Making _ of mod_vhost_alias.c Configurable

2003-09-25 Thread Eli Marmor
Hi, When the %N or %-N of VirtualDocumentRoot (or one of its friends) in mod_vhost_alias.c doesn't exist, mod_vhost_alias.c puts _ instead of it. I want to add a directive that when being defined, will replace this _ by another string, or by an empty string. An empty string (or .) can be good

Re: URLs containing colon: Win32 vs. Linux

2003-09-25 Thread Bill Stoddard
Jeff Trawick wrote: Does anybody have a quick answer, like can't have colon anywhere in uri path or we're busted or something else? URL is http://127.0.0.1:8080/dobedobedo;session=0:0 dobedobedo doesn't really exist Apache 2.0.47 on Win32: - 403 (no reason logged) Apache 2.0.47 on Linux: -

Re: URLs containing colon: Win32 vs. Linux

2003-09-25 Thread Geoffrey Young
hi :) A module like mod_php would have to determine -sometime in the translate_name phase- that it is serving the object requested and prevent ap_core_translate from running (returning OK on it's translate name hook?) the make darn sure it's handler did not decline the request. how would you

Re: URLs containing colon: Win32 vs. Linux

2003-09-25 Thread Jeff Trawick
Geoffrey Young wrote: while I'm still new exactly how APR fits in the whole picture, maybe some of ap_core_translate belongs there, since what seems to be happening is that some OSs get tripped up on valid URIs (and 3.3 of RFC 2396 does seem to indicate that the URI presented is indeed valid).

Re: Input filter and setting HTTP headers in Apache 2.0

2003-09-25 Thread Joe Schaefer
[EMAIL PROTECTED] writes: [...] The question is how can I ask CORE_IN for the request line, http headers and request body without causing it to be consumed? Why don't you just write a fixup handler with libapreq-2? AFAICT libapreq-2's mod_apreq (filter) handles these details for you.

Re: URLs containing colon: Win32 vs. Linux

2003-09-25 Thread William A. Rowe, Jr.
At 02:00 PM 9/25/2003, Jeff Trawick wrote: Geoffrey Young wrote: while I'm still new exactly how APR fits in the whole picture, maybe some of ap_core_translate belongs there, since what seems to be happening is that some OSs get tripped up on valid URIs (and 3.3 of RFC 2396 does seem to

Re: URLs containing colon: Win32 vs. Linux

2003-09-25 Thread Bill Stoddard
William A. Rowe, Jr. wrote: At 02:00 PM 9/25/2003, Jeff Trawick wrote: Geoffrey Young wrote: while I'm still new exactly how APR fits in the whole picture, maybe some of ap_core_translate belongs there, since what seems to be happening is that some OSs get tripped up on valid URIs (and 3.3 of