免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2095 | 回复: 0
打印 上一主题 下一主题

[求助]设置SetInputFilter 过滤器,获取请求数据? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-08-29 12:23 |只看该作者 |倒序浏览
环境:readhat9 apache 2.2 perl5。9.5
httpd.conf 添加如下配置:
LoadModule perl_module modules/mod_perl.so

ProxyRequests Off
ExtFilterDefine inputfilter mode=input cmd="/www/cgi/to/module/testinput.pl"
<Location /filter>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SetInputFilter inputfilter
</Location>


testinput.pl 代码如下:
#!/usr/bin/perl -w

use strict;
##test

mkdir("/www/cgi/ddd");
open(SAVE, ">/www/cgi/ddd/outmsg") or die "can't open file: $!";

#Get Request

print SAVE "start\n";
my $content="";
while (<STDIN>){
print SAVE $_;
$content = $content.$_;
#print $_;

}
print SAVE "end\n";
close(SAVE);


运行现象: ie触发 http://192.168.0.4/filter/
后台执行了testinput.pl脚本,生成了日志文件/www/cgi/ddd/outmsg
数据只有
start
end
结果是<STDIN>没有获得数据。如何获取ie客户端的请求数据呢?请大侠赐教,谢谢!

[ 本帖最后由 sundycindy 于 2007-8-29 12:24 编辑 ]
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP