in reply to Getting a web page with LWP

I don't have an answer (sorry, my LWP is working fine and it's 5.69). But what have you done to track it down? If the debug process seems unweildy to you, check out Effective Perl Programming (we need an id short cut to this). Especially the chapter on Debugging

-derby

update: Okay, off the soapbox. What does the url look like? Is it malformed? What protocols does your LWP support ($ua->protocols_allowed). Does that match-up with the url you're trying to GET? Check out the LWP::UserAgent docs for error 500. Can you retrieve the url outside of perl (by a browser or another offline retrieval tool like GET or wget or curl)?

Replies are listed 'Best First'.
Re: Re: Getting a web page with LWP
by chimni (Pilgrim) on Jul 23, 2003 at 05:09 UTC
    Hi,
    The url is not malformed and i can access it otherwise .
    It was being accesses by this script .Suddenly the script stopped working.
    i did try to install open ssl but the crypt:ssleay module failed.
    thats the only change on the system.
    protocols_allowed has http,script still fails
    thanks for the input