1. Error on a first pass: "Can't call method "clone" on unblessed reference at /usr/share/perl5/HTTP/Message.pm line 32."
2. Shouldn't the %ENV variable names be mapped to the
a-bit-different HTTP Header names?
3. And we are passing a hashref to the HTTP::Request constructor, but it expects an arrayref (solved via this
node).
Changed code:
my %env_to_httpheader = (
'HTTP_USER_AGENT' => 'User-Agent',
'HTTP_HOST' => 'Host',
'HTTP_TE' => 'Accept-Encoding',
'CONTENT_LENGTH' => 'Content-Length',
# from here on blurry from memory: (and probably more to inclu
+de as well..)
'CONTENT_ENCODING' => 'Content-Encoding',
'CONTENT_TYPE' => 'Content-Type',
);
my $headers;
foreach my $key (keys %env_to_httpheader) {
if (exists $ENV{$key}) {
# $headers->{ $env_to_httpheader{$key} } = $ENV{$key};
# "The optional $header argument should be a reference
+ to an HTTP::Headers object or a plain array reference of key/value p
+airs."
push(@{ $headers }, $env_to_httpheader{$key});
push(@{ $headers }, $ENV{$key});
}
}
Result: After changing this, it works!
Any leftovers, hints, tweaks for this piece of code before I move it to production code? For example, a module for the ENV to HTTP Header translation, or similar improvements?
2c: A lengthy hack, isn't it? Just to get a HTTP::Response out of CGI.pm/CGI::Fast. Once more, I dislike this CGI.pm-behemoth..
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.