Subject: | Net::Google loops with umlauts |
I found one bug with Net::Google -- and I don't know if it's
Net::Google or the underlying
SOAP::Lite or even Google itself, but it is easy to reproduce:
use Net::Google;
my $service = Net::Google->new(
key => "YOUR_GOOGLE_KEY_HERE"
);
my $session = $service->search();
$session->query('ß');
$session->results();
If you insert a valid Google key as YOUR_GOOGLE_KEY_HERE and
make sure that the character passed to
the query() method is indeed the umlaut 'ß' (%DF url-encoded),
you'll see that the script above
loops indefinitely, showing
500 Internal Server Error at
/home/mschilli/PERL-5.6.0/lib/perl5/site_perl/5.6.0/SOAP/Lite.pm
line 2600
500 Internal Server Error at
/home/mschilli/PERL-5.6.0/lib/perl5/site_perl/5.6.0/SOAP/Lite.pm
line 2600
...
Would be great if you could look into it -- thanks!
-- Mike
--------------------------------------------------------
Mike Schilli m@perlmeister.com http://perlmeister.com
--------------------------------------------------------