The logs are unhelpful, but some packet sniffing was. You were right, the filter was closing the connection. It seems that the filter API works fine with GETs, since it's set to by default. However, if you throw any other sort of request at it, it will close unless you return a DECLINED status to Apache, which makes it just pass the request to the next filter. So, you end up needing to specifically deal with every possible request
# need to specify which options this can't deal with, or it wi +ll bork things. # if a method is undealt with, must pass DECLINED to apache. if ($filter->r->method_number != Apache2::Const::M_GET && $filter->r->method_number != Apache2::Const::M_PUT) { $filter->r->allowed($filter->r->allowed | (1<<Apache2: +:Const::M_GET) | (1<<Apache2::Const::M_PUT)); return Apache2::Const::DECLINED; # otherwise, we do want to do something with this request } else {
Unfortunately, the only place I could find this documented was under the r->allowed API documentation. Go figure.

Thanks much for the tips!


In reply to SOLVED (Re: mod_perl apache i/o filter borking WebDAV access) by Anonymous Monk
in thread mod_perl apache i/o filter borking WebDAV access by heisters

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.