What should I have done to get information on LWP::SIMPLE? At http://perldoc.com/perl5.8.0/lib.html there are links to information on:

LWP The World-Wide Web library for Perl LWP::ConnCache Connection cache manager LWP::Debug debug routines for the libwww-perl library LWP::MediaTypes guess media type for a file or a URL LWP::MemberMixin Member access mixin class LWP::Protocol Base class for LWP protocols LWP::RobotUA A class for Web Robots LWP::UserAgent A WWW UserAgent class

The search tool at perldoc.com gave me a few links, but the one that seemed most related was http://www.perldoc.com/perl5.8.0/lib/LWP/Simple.html, and that didn't contain the information that I wanted. I wanted to know the differences between the simple and full-featured LWP modules, specifically, whether the support for "transparent redirect handling" that's mentioned in the general LWP information at http://perldoc.com/perl5.8.0/lib/LWP.html exists for LWP::SIMPLE. Someone told me that my script, which uses LWP::SIMPLE, was able to get the page it was redirected to, but I know my script couldn't get certain other pages that required a redirect. I wanted to know if I needed the full-functioning LWP for full redirect support.

I ended up searching google for "lwp::simple" redirects, and found http://archive.develooper.com/libwww@perl.org/msg04147.html, which gave me the answer: "LWP::Simple does not perform automatic redirects. You will need to use LWP::UserAgent and LWP::Request." I'd like to confirm this with the docs. Could someone tell me where to look?

Thanks

In reply to Lack of LWP::SIMPLE information by Wassercrats

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.