Hi All, I'm unable to get my locally installed HTTP modules to interface with each other. Apologies in advance for the heaps of code below - I tried to organize it as best as possible.

Here's the path to the modules...

/path/to/the/cgi/bin/cgi-bin/usr/local/lib/perl5/site_perl/HTTP> ls -l -r--r--r-- 1 mhalunen user 19433 Dec 8 2004 Message.pm -r--r--r-- 1 mhalunen user 5030 Apr 7 2004 Request.pm -r--r--r-- 1 mhalunen user 11827 Dec 11 2004 Response.pm
Here's the program snippet...
use lib qw(/path/to/the/cgi/bin/cgi-bin/usr/local /path/to/the/cgi/bin/cgi-bin/usr/local/lib/perl5 /path/to/the/cgi/bin/cgi-bin/usr/local/bin /path/to/the/cgi/bin/cgi-bin/usr/local/lib/perl5/site_perl /path/to/the/cgi/bin/cgi-bin/usr/local/bin /path/to/the/cgi/bin/cgi-bin/usr/local/lib/perl5/man /path/to/the/cgi/bin/cgi-bin/usr/local/lib/perl5/man/man3); use XML::Filter::ExceptionLocator; # <-- locally installed use HTTP::Request; # <-- locally installed (Invokin +g this module triggers the server error)
Here's the error...
...got line "compilation failed in require at /path/to/the/cgi/bin/cgi +-bin/usr/local/lib/perl5/site_perl/http/request.pm line 5.")
line 5 from request.pm is:
require HTTP::Message;
It appears to me that HTTP::Request is not interfacing with HTTP::Message. Any thoughts?

In reply to locally installed modules not interfacing by mike hal

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.