Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: How to read request headers?

by grep (Monsignor)
on Jul 19, 2008 at 23:34 UTC ( [id://698861]=note: print w/replies, xml ) Need Help??


in reply to How to read request headers?

It would be much easier if you posted some code (preferably a small test case). I have no idea if you are using CGI, CGI::Lite, or any other CGI modules.

That being said one way to see the Content-Range header would be to use %ENV to pull the 'HTTP_CONTENT_RANGE'.

print $ENV{HTTP_CONTENT_RANGE};

Here is a test CGI script:

use warnings; use strict; use CGI; use CGI::Carp qw(fatalsToBrowser); use Data::Dumper; my $q = CGI->new; print $q->header,$q->start_html; print '<pre>'; print Dumper \%ENV; print '</pre>'; print "<br>Content-Range: ",$ENV{HTTP_CONTENT_RANGE};

And a small fake request:

use warnings; use strict; use LWP::UserAgent; my $ua = LWP::UserAgent->new; my $req = HTTP::Request->new(GET => 'http://www.cicisdw.com/foo.cgi'); $req->header( 'Content-Range' => 'bytes 0-499/500' ); my $resp = $ua->request($req); print $resp->{_content};
grep
One dead unjugged rabbit fish later...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://698861]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (5)
As of 2024-04-23 07:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found