File: ref_search.pl

package info (click to toggle)
libbiblio-citation-parser-perl 1.10%2Bdfsg-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 660 kB
  • sloc: perl: 3,793; sh: 51; makefile: 2
file content (11 lines) | stat: -rwxr-xr-x 445 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl -w
use SOAP::Lite;
my $query = "Harnad, Stevan (1995) The PostGutenberg Galaxy: How to Get There From Here. Information Society 11(4):285-292.";
my $baseurl = "http://paracite.eprints.org/cgi-bin/openurl.cgi?";

my $result = SOAP::Lite
        -> service("http://paracite.eprints.org/paracite.wsdl")
        -> doParaciteSearch($query, $baseurl);

print "Results of search on $query:\n";
use Data::Dumper; print Dumper($result);