| SOAP-ISIWoK documentation | view source | Contained in the SOAP-ISIWoK distribution. |
SOAP::ISIWoK - search and query the ISI Web of Knowledge
use SOAP::ISIWoK; my $wok = SOAP::ISIWoK->new(); my $results = $wok->search( "AU = (Brody)" ); my $results = $wok->search( "AU = (Brody)", offset => 10, max => 20 ); print $results->toString;
This module is a thin wrapper for the ISI Web of Knowledge SOAP interface.
It takes a search description and returns the resulting XML response from ISI as a XML::LibXML document. Parsing the search result is outside of the scope of this module.
To access the ISI WoK interface you will need a subscription to ISI WoK and arrange for access to their Web services server (you'll need to talk to your ISI representative).
AU = (Brody) and TI = (citation impact)
A search query consists of index = terms where index is one of the indexes listed below. terms is one or more terms in double quotes (") or parentheses ('(' and ')').
Multiple operands can be joined using logical operators:
Results in all records in which both operands are found together in the same sentence. A sentence is a period delimited string. A field that does not contain period delimited strings is treated as a single sentence. If a 'same' operator joins two query expressions, then both query expressions must have the same index.
Results in all records represented in the left operand but not the right operand.
Results in all records represented in the both the left operand and the right operand.
Results in all records represented in either or both the left operand and the right operand.
AD Address AU Author CA Cited Author CI City CT Conference CU Country CW Cited Work CY Cited Year DT Document Type GP Group Author LA Language OG Organization PS Province/State PY Pub Year SA Street Address SG Sub-organization SO Source TI Title TS Topic UT ISI UT identifier ZP Zip/Postal Code
None by default.
Fixed some issues in the POD.
Original version; created by h2xs 1.23 with options
-n SOAP::ISIWoK -e -A -C -X -c -b 5.8.0
SOAP::Lite, http://www.isiknowledge.com/
Timothy D Brody, <tdb2@ecs.soton.ac.uk>
Copyright (C) 2010 by Tim D Brody, University of Southampton, UK
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.
| SOAP-ISIWoK documentation | view source | Contained in the SOAP-ISIWoK distribution. |