
srhadden
Novice
Dec 7, 2009, 3:42 PM
Post #1 of 2
(658 views)
|
|
Using LWP and it hangs on the get command
|
Can't Post
|
|
I am trying to use the LWP model on 5.004_04 solaris 9. This script works fine from a machine located in a different domain. When I run this script on a machine within the same domain as the server, it just hangs. I thought it was the apache server, but it isn't since the script works if I run it from a machine in another country. Is there some server setting that could be blocking the request? I'm not sure how to debug this. Thanks for any help.
!/usr/local/bin/perl5 use LWP::Simple; $content = get "http://<servername>:8001/toolname/" print $content;
|