1SOAPSH(1)             User Contributed Perl Documentation            SOAPSH(1)
2
3
4

NAME

6       SOAPsh.pl - Interactive shell for SOAP calls
7

SYNOPSIS

9         perl SOAPsh.pl http://services.soaplite.com/examples.cgi http://www.soaplite.com/My/Examples
10         > getStateName(2)
11         > getStateNames(1,2,3,7)
12         > getStateList([1,9])
13         > getStateStruct({a=>1, b=>24})
14         > Ctrl-D (Ctrl-Z on Windows)
15
16       or
17
18         # all parameters after uri will be executed as methods
19         perl SOAPsh.pl http://soap.4s4c.com/ssss4c/soap.asp http://simon.fell.com/calc doubler([10,20,30])
20         > Ctrl-D (Ctrl-Z on Windows)
21

DESCRIPTION

23       SOAPsh.pl is a shell for making SOAP calls. It takes two parameters:
24       mandatory endpoint and optional uri (actually it will tell you about it
25       if you try to run it). Additional commands can follow.
26
27       After that you'll be able to run any methods of SOAP::Lite, like
28       autotype, readable, encoding, etc. You can run it the same way as you
29       do it in your Perl script. You'll see output from method, result of
30       SOAP call, detailed info on SOAP faulure or transport error.
31
32       For full list of available methods see documentation for SOAP::Lite.
33
34       Along with methods of SOAP::Lite you'll be able (and that's much more
35       interesting) run any SOAP methods you know about on remote server and
36       see processed results. You can even switch on debugging (with call
37       something like: "on_debug(sub{print@_})") and see SOAP code with
38       headers sent and received.
39
41       Copyright (C) 2000 Paul Kulchenko. All rights reserved.
42

AUTHOR

44       Paul Kulchenko (paulclinger@yahoo.com)
45
46
47
48perl v5.30.1                      2020-01-30                         SOAPSH(1)
Impressum