[mp2] No data is read from Perl Output Filter
"Vlad Liapko" <[email protected]>
| Newsgroups | gmane.comp.apache.mod-perl |
|---|---|
| Message-ID | <D9B91DF4EF4C4972BFC5378AC4B641C9@DESKTOPFKI6TL1> |
I am experimenting with ReverseProxy::FormFiller and stuck with output request rewriting. Nothing is read from filter, but filter is invoked.
Code below writes nothing into logs.
while ($f->read(my $buffer, 1024)) {
$body .= $buffer;
&logErrorSimple($f->r,"---------$body------$buffer-----");
}
There are always a few parameters are sent via POST during tests, but nothing can't be rewritten by the filter because nothing is read.