用perl测试一个在server push的程序不成功,请帮忙,谢谢

发布于 2022-10-02 18:41:11 字数 734 浏览 29 评论 0

目的想用CGI实现server push(服务器推送技术),
因微软IE不支持服务器推送技术我在RH9上面测试不成功,程序如下,我在服务器终端执行perl nph-push.cgi是OK的,不知道不能在浏览器下执行是什么原因,请高手赐教。谢谢了
下面是名为nph-push.cgi的程序
#!/usr/bin/perl -w
use strict;
use CGI qw(:push -nph);
$|=1; #enable automatic buffer flushing
print multipart_init;
while(1){
        print multipart_start;
        #print "Content-Type:text/html\n\n";
        print "The time is <H1>;".scalar(localtime)."</H1>;\n";
        print multipart_end;
        sleep 5;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

糖粟与秋泊 2022-10-09 18:41:11

支持呀,我装的CGI.pm-2.74,下面是一个CGI程序
#!/usr/bin/perl -w
use strict;
use CGI qw(:all);
print header;
print "You were sent from ".referer."<br>;";
print "You are apparently running :".user_agent."<br>;";
print "The system is called :".remote_host."<br>;";
print "The name is programe is :".script_name."<br>;";
print "It's running on the server :".server_name."<br>;";
print "The server's calling itself:".virtual_host."<br>;";

运行的结果如下:
You were sent from
You are apparently running :Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)
The system is called :192.168.0.162
The name is programe is :/~bjbs270/cgi-bin/en.cgi
It's running on the server :192.168.0.160
The server's calling itself:192.168.0.160

这不说明系统支持CGI吗。

弥枳 2022-10-09 18:41:11

可以了,是我命名的问题,刚才是用的没有nph-前缀的文件名是不可以的。
现在改为nph-前缀的文件名是OK的。
不过可惜的是微软服务器不可以,郁闷中。。。。。。。。
在IE下运行的结果为
====================================
--------- =_aaaaaaaaaa0
HTTP/1.1 200 OK
Content-Type: text/html; charset=ISO-8859-1

Content-Type:text/html

The time is <H1>;Mon Dec 27 14:45:07 2004</H1>;

--------- =_aaaaaaaaaa0
HTTP/1.1 200 OK
Content-Type: text/html; charset=ISO-8859-1

Content-Type:text/html

The time is <H1>;Mon Dec 27 14:45:12 2004</H1>;

--------- =_aaaaaaaaaa0
HTTP/1.1 200 OK
Content-Type: text/html; charset=ISO-8859-1

Content-Type:text/html

The time is <H1>;Mon Dec 27 14:45:17 2004</H1>;

--------- =_aaaaaaaaaa0
..............................

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文