use LWP; our $ua = LWP::UserAgent->new(); my $url = "http://www.google.com"; my $response = $ua->get($url); my $request = $response->request(); print $request->as_string(); __END__ output ====== GET http://www.google.ca/ User-Agent: libwww-perl/5.64

Ouch, LWP has bugs.

The lack of HTTP/1.0 or HTTP/1.1 makes this an HTTP/0.9 request. That's fine, except that a HTTP/0.9 header consists of just the Request-Line, with no "header: value" pairs. The User-Agent line and the three CRLF after the first one are therefore invalid, but I doubt this is the problem.

An absolute-URI is specified in the Request-Line. That "is only allowed when the request is being made to a proxy". I'm not making the request to a proxy, so bug number two! You are making the request to a proxy, however, so that should be ok for you. *Should* be ok. I bet this is what it's chocking on nonetheless.


In reply to Re: HTTP Proxy Madness by ikegami
in thread HTTP Proxy Madness by digamma

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.