NAME
SOAP::ISIWoK::Lite - search and query the ISI Web of Knowledge
SYNOPSIS
use SOAP::ISIWoK::Lite;
my $wok = SOAP::ISIWoK::Lite->new();
my $doc = $wok->search( "AU = (Brody)" );
# e.g. retrieve next set of records
$doc = $wok->search( "AU = (Brody)", offset => 10, max => 20 );
print $doc->toString;
DESCRIPTION
This module is a lighter version that doesn't use SOAP::Lite.
SEE ALSO
SOAP::ISIWoK, SOAP::Lite, http://www.isiknowledge.com/
AUTHOR
Timothy D Brody, <tdb2@ecs.soton.ac.uk>
COPYRIGHT AND LICENSE
Copyright (C) 2010 by Tim D Brody
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.