473,668 Members | 2,799 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

HTTP::Request for www.thescripts. com

34 New Member
Expand|Select|Wrap|Line Numbers
  1. #/usr/bin/perl -w
  2. use LWP::UserAgent;
  3. use Time::HiRes qw(gettimeofday);
  4. #use Crypt::SSLeay;
  5.  
  6. use strict;
  7.  
  8. print "Enter URL to Time GET request for...  ";
  9. my $host=<STDIN>;
  10. chomp $host;
  11.  
  12. my $before=gettimeofday;
  13. my $ua = LWP::UserAgent->new(); 
  14. my $request = HTTP::Request->new('GET', "$host");
  15. my $response = $ua->request($request);
  16. my $elapsed=gettimeofday-$before;
  17. print "ERROR: Bad URL\n" if($response->is_error);
  18. my @content=split/\n/,$response->content;
  19. print "Request took $elapsed seconds.\n";
  20. my @title=grep /(?:title|TITLE)/, @content;
  21. print "TITLE LINE: @title \n";
  22.  
I'm using this script to see how fast it can get different pages.
I put www.thescripts.com as my page,

www.thescripts.com
Enter URL to Time GET request for... ERROR: Bad URL
Request took 0.0080049037933 3496 seconds.

Why would it be a bad url?
Jul 13 '07 #1
7 1670
miller
1,089 Recognized Expert Top Contributor
www.thescripts. com is not a fully qualified url. You must specify the protocol:

http://www.thescripts. com

- Miller
Jul 13 '07 #2
samthemist
34 New Member
Thanks for helping, but it still didn't work:

http://www.thescripts.com
Enter URL to Time GET request for... ERROR: Bad URL
Request took 0.0084350109100 3418 seconds.
>Exit code: 0
Jul 13 '07 #3
miller
1,089 Recognized Expert Top Contributor
Read this:

cpan lwptut

Namely the second section "The Basics of the LWP Class Model" will show you a better way to formatting you request. And much more importantly, it will show you how to get meaningful error messages.

- Miller
Jul 13 '07 #4
KevinADC
4,059 Recognized Expert Specialist
Well, you have told the script to print "Bad URL" regardless of what the real error is. The script works fine for me, but do have to shutdown my firewall first because I never figured out how to get a command line perl program to be allowed internet access while the firewall is turned on.
Jul 13 '07 #5
samthemist
34 New Member
I don't need to turn my firewall off for it to work.

However, it turns out it requested pages at roughly 1500-2000ms.

I'm still finding it hard to believe, that perl requests pages slower than VB6?!?!
Jul 14 '07 #6
KevinADC
4,059 Recognized Expert Specialist
perl is really good at processing text, anything else it is not going to be the fastest solution for doing something. I am not a VB6 coder so I have no way to know why it is faster than perl in this specific situation. Perl does have to be compiled, so that right there will add time to the over all speed of execution.
Jul 14 '07 #7
samthemist
34 New Member
I've made another thread - i think that's why. Go take a look!
Jul 14 '07 #8

Sign in to post your reply or Sign up for a free account.

Similar topics

3
8321
by: Fran?ois-Xavier Testard-Vaillant | last post by:
In a Perl script I want to send several http requests WITHOUT waiting for the remote servers answer (i.e. just triggering http requests) and without having to create lots of processes... Thanks in advance François-Xavier
1
5750
by: Sure | last post by:
Hello All, I want to update a form using the LWP & HTTP method. It was working fine when I am updating the values like this $ua = LWP::UserAgent->new; $url ='http://xxx.be/cgi-bin/viewauth/Tracking/TestProjectAgainInitialDevStory#edittable2'; use HTTP::Request::Common; my $res = $ua->request(POST $url, Content_Type =>'form-data',
2
2632
by: Robert Oschler | last post by:
I have an IMG element that I've been using to send messages back to my server whenever certain item option choices are made by a visitor. I send each message by forming a URL with various search arguments being used, and then I use Javascript to se the IMG element's SRC property to the URL. I have discovered, that if the visitor clicks multiple options quickly, IE does not execute every URL request. It looks like it queues them and...
5
6020
by: Henrik | last post by:
Hi, I am trying to read some industrial webservers using the HTTP/CGI webequest like this: wrs = (HttpWebRequest)WebRequest.Create(HTTP/CGI-string); mwst = (HttpWebResponse wrs.GetResponse(); str = mwst.GetResponseStream(); This usually works fine but on some servers i get:
1
5532
by: Kueishiong Tu | last post by:
I have a .net window form application but I have to get data from various web sites. How do I make Http request (preferrably via post method) from a window form to get the data from those web sites? What namespace and dll do I have to include? A walkthrough and coding example will be helpful. ...
1
2457
by: omantawy | last post by:
Hi, I have some legacy ASP web applications that use an unmanaged COM component to connect to a third party application. The third part application has moved to the managed code in the current release with backward compatibility with the unmanaged code. In the future releases, the vendor is going to drop backward compatibility and as a result of that all our legacy ASP applications will break.
4
3796
by: AviCoh | last post by:
Hi, Let me start with the question and then describe my case : Is there a way to read the raw contents of an HTTP request in PHP as a stream (i.e. not get it all at once from Apache) ? In my case I am implementing an API for my server side app. One of the actions in the API allows the posting of binary contents as application/octet-stream. The size of this binary contents can get up to several MBs.
1
3653
by: nkg1234567 | last post by:
I'm trying to extract HTML from a website in the form of a string, and then I want to extract particular elements from the string using the substr function: here is some sample code that I have thus far: use HTTP::Request::Common; use LWP::UserAgent; use LWP::Simple; $ua = LWP::UserAgent->new;
5
2377
by: rpjanaka | last post by:
Hi all, I am using AJAX to submit a data from a web page, it is properly working on the local host (when test with the local machine it is ok).also when access from another machine the pages are properly lord. But when send data it gives an http request error. The following is the error message. it include several suggestions, but i cant exactly deiced what it is.? pls anyone can help me to find the reason for this... ERROR The...
0
8462
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8893
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8797
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8583
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8656
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7401
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5681
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4205
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4380
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.