Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
When I tried to run the program, it just hangs. What I'm suspecting is that ASP is not very friendly toward non-Netscape-IE browsers. The same thing happens when I try to access the website using Lynx on my unix box - it just hangs trying to make connection to the server. One such problem website is "http://www.us.buy.com". Can anyone verify if the same thing happens using Lynx? Does anyone have the same problem and how do you get around this programming wise? Any help is appreciated. Thank you. -mobi$ua = LWP::UserAgent->new; $cookie_jar = HTTP::Cookies->new; $ua->cookie_jar($cookie_jar); $request = HTTP::Request->new(GET => $url); $response = $ua->request($request);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Simulate a Specific User Agent with LWP
by Arguile (Hermit) on Oct 16, 2001 at 10:50 UTC | |
|
Re: Simulate Connection using LWP
by blakem (Monsignor) on Oct 16, 2001 at 10:28 UTC |