Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Can't locate object method

by Anonyrnous Monk (Hermit)
on Feb 01, 2011 at 17:36 UTC ( [id://885565]=note: print w/replies, xml ) Need Help??


in reply to Can't locate object method

LWP::Protocol::https::Socket inherits (the "new" method) from Net::HTTPS, which in turn inherits from one of the SSL implementations Net::SSL / Crypt::SSLeay or IO::Socket::SSL.

In other words, you probably have neither of those latter modules - with their respective dependent shared libs (OpenSSL/SSLeay) - installed properly.

Replies are listed 'Best First'.
Re^2: Can't locate object method
by RachunZero (Novice) on Feb 01, 2011 at 18:26 UTC

    Thanks for the details :-)

    I think you're right. I think I need to know more about how the shared libraries are installed and referenced. Is there some documentation that explains this?

    I understand that when I install a module that I get some perl code and some compiled code, but I'm not sure how this works, where it ends up, and how to make sure it's in the right place.

      It would be easier to help if we knew, for example, what platform you're on, what modules (you think) you have installed, how exactly you installed them, whether there were any errors at build/install time, etc.

      In general, for tracking down problems with dependent libs, ldd is your friend (assuming you're on Linux/Unix — though there are similar tools for Windows).  For example, if you have Crypt::SSLeay installed, find Crypt/SSLeay/SSLeay.so, and run ldd on it. It should list what other shared libraries SSLeay.so depends on, and whether (and from where) those other libraries (such as libssl.so) would be loaded.

        Cool. That displays:

        ldd ./lib/site_perl/5.12.2/i86pc-solaris-thread-multi/auto/Crypt/SSLea +y/SSLeay.so libssl.so.0.9.8 => (file not found) libcrypto.so.0.9.8 => (file not found) libc.so.1 => /lib/libc.so.1 libm.so.2 => /lib/libm.so.2

        So somewhere in this particular compile, I've messed up the libraries.

        Thanks very much for your help!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (1)
As of 2024-04-24 13:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found