summaryrefslogtreecommitdiff
path: root/utilities/diatheke/soap/soapatheke.pl
blob: c45fd98782cdc1918911b2a694be56d075b4fbec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/perl

# *
# * Copyright 2009 CrossWire Bible Society (http://www.crosswire.org)
# *	CrossWire Bible Society
# *	P. O. Box 2528
# *	Tempe, AZ  85280-2528
# *
# * This program is free software; you can redistribute it and/or modify it
# * under the terms of the GNU General Public License as published by the
# * Free Software Foundation version 2.
# *
# * This program is distributed in the hope that it will be useful, but
# * WITHOUT ANY WARRANTY; without even the implied warranty of
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# * General Public License for more details.
# *


## This is a test app and has no other purpose.

use SOAP::Lite;

my ($books, $key, $options, $encoding, $markup, $searchtype, $locale, $script, $max) = @ARGV;

# uncomment to see parameters being passed to the SOAP server (for debugging)
# print "$books\n$key\n$options\n$encoding\n$markup\n$searchtype\n$locale\n$script\n$max\n";

print SOAP::Lite
    -> uri('http://bible.gotjesus.org/sapouni')
    -> proxy('http://bible.gotjesus.org/cgi-bin/sapouni.cgi')
    -> biblequery($books, $key, $options, $encoding, $markup, $searchtype, $locale, $script, $max)
    -> result;