in reply to Re^2: IIS 6 and perl 5.8 pipes
in thread IIS 6 and perl 5.8 pipes

Windows has a somewhat broken take on STDIN, STDERR and STDOUT. Just as a random thought I wonder what the result of this might be:

$retval = `echo 123 | more`; print while <STDIN>;

Just wondering if Win32/IIS/Perl is confusing the shell and the IIS script stdin/stdout when you start using pipes.

cheers

tachyon