| Server IP : 74.208.236.79 / Your IP : 216.73.216.46 Web Server : Apache System : Linux infongp-us50 4.4.400-icpu-108 #2 SMP Wed Feb 11 10:12:42 UTC 2026 x86_64 User : u93192080 ( 6162215) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /kunden/usr/share/doc/libsoap-lite-perl/examples/ |
Upload File : |
#!/usr/bin/perl -w
#!d:\perl\bin\perl.exe
# -- SOAP::Lite -- soaplite.com -- Copyright (C) 2001 Paul Kulchenko --
# Google Web API: http://www.google.com/apis/
# NB: Register and get your own key first
# see also:
# http://interconnected.org/home/more/GoogleSearch.pl.txt
# http://aaronland.net/weblog/archive/4205
# http://www.oreillynet.com/cs/weblog/view/wlg/1283
use SOAP::Lite;
my $key = '0'; # <<< put your key here
my $query = shift || 'soap';
# use GoogleSearch.wsdl file from Google developer's kit
# update path to file to make it work
# GoogleSearch.wsdl is NOT included
my $google = SOAP::Lite->service('file://GoogleSearch.wsdl');
my $result = $google->doGoogleSearch(
$key, $query, 0, 10, 'false', '', 'false', '', 'latin1', 'latin1');
die $google->call->faultstring if $google->call->fault;
print "About $result->{'estimatedTotalResultsCount'} results.\n";