FastCGIをWindows環境に導入したみたんですが、Internal Server Error
が毎回発生してしまってうまくいきません。
error.logに「(OS 109)パイプは終了しました。」のメッセージが出るんですが
FastCGIが通信出来ていないって事なんでしょうか?
何か解れば、教えて下さい。

エラー内容
Internal Server Error

perlスクリプト test.fcgi
#!c:/perl/bin/perl
print "Content-type: text/html\n\n";
print "Hello world.";

環境
OS : WindowsXP Pro SP2
http : Apache/2.2.10 (Win32)
FastCGI : mod_fastcgi-2.4.6-AP22.dll

httpd.conf
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule fastcgi_module modules/mod_fastcgi-2.4.6-AP22.dll

<IfModule mod_fastcgi.c>
FastCGIConfig -initial-env PERL5LIB=C:/Perl/lib;C:/Perl/site/lib -autoUpdate -idle-timeout 120 -killInterval 3600 -maxClassProcesses 3-maxProcesses 15 -startDelay 30
AddHandler fastcgi-script .fcgi
</IfModule>