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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
|
#!/usr/bin/perl
# Example of Document SOAP.
# Thanks to Thomas Bayer, for providing this service
# See http://www.thomas-bayer.com/names-service/
# Author: Mark Overmeer, 6 Nov 2007
# Using: XML::Compile 0.60
# XML::Compile::SOAP 0.63
# Copyright by the Author, under the terms of Perl itself.
# Feel invited to contribute your examples!
# Of course, all Perl programs start like this!
use warnings;
use strict;
# All the other XML modules should be automatically included.
use XML::Compile::WSDL11;
use XML::Compile::SOAP11;
use XML::Compile::Transport::SOAPHTTP;
# Other useful modules
use Data::Dumper; # Data::Dumper is your friend.
$Data::Dumper::Indent = 1;
use List::Util qw/first/;
my $format_list;
format =
^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<~~
$format_list
.
# Forward declarations
sub get_countries($);
sub get_name_info();
sub get_names_in_country();
#### MAIN
use Term::ReadLine;
my $term = Term::ReadLine->new('namesservice');
#
# Get the WSDL and Schema definitions
#
my $wsdl = XML::Compile::WSDL11->new('namesservice.wsdl');
$wsdl->importDefinitions('namesservice.xsd');
#
# Pick one of these tests
#
my $answer = '';
while(lc $answer ne 'q')
{
print <<__SELECTOR;
Which call do you like to see:
1) getCountries
2) getCountries with trace output
3) getNameInfo
4) getNamesInCountry
Q) quit demo
__SELECTOR
$answer = $term->readline("Pick one of above [1/2/3/4/Q] ");
chomp $answer;
if($answer eq '1') { get_countries(0) }
elsif($answer eq '2') { get_countries(1) }
elsif($answer eq '3') { get_name_info() }
elsif($answer eq '4') { get_names_in_country() }
elsif(lc $answer ne 'q' && length $answer)
{ print "Illegal choice\n";
}
}
exit 0;
#
# First example
# This one is explained in most detail
#
sub get_countries($)
{ my $show_trace = shift;
# first compile a handler which you can call as often as you want.
# If you do not know the name of the portType, then just put anything
# here: the error message will list your options.
my $getCountries
= $wsdl->compileClient
( 'getCountries'
# , validate => 0 # unsafe but faster
# , sloppy_integers => 1 # usually ok, faster
);
# Actually, above is an abbreviation of
# = $wsdl->compileClient(operation => 'getCountries');
# = $wsdl->find(operation => 'getCountries')->compileClient;
# You may need to go into more the extended syntaxes if you have multiple
# services, ports, bindings, or such in you WSDL file. Is so, the run-time
# will ask you to do so, offering alternatives.
#
# Call the produced method to list the supported countries
#
# According to the WSDL, the message has one body part, named 'parameters'
# When there can be confusion, you have to be more specific at the call
# of the method. When multiple header+body parts exist, use should group
# your data on part name.
my ($answer, $trace)
# = $getCountries->(Body => {parameters => {}});
# = $getCountries->(parameters => {});
= $getCountries->(); # is code-ref, so still needs ->()
# In above examples, the first explicitly addresses the 'parameters'
# message part in the Body of the SOAP message. There is also a Header.
# The second version can be used when all header and body parts have
# difference names. The last version can be used if there is only one
# body part defined.
# If you do not need the trace, simply say:
# my $answer = $getCountries->();
#
# Some ways of debugging
#
if($show_trace)
{ $trace->printTimings;
$trace->printErrors;
$trace->printRequest;
$trace->printResponse;
}
# And now? What do I get back? I love Data::Dumper.
# warn Dumper $answer;
#
# Handling faults
#
if(my $fault_raw = $answer->{Fault})
{ my $fault_nice = $answer->{$fault_raw->{_NAME}};
# fault_raw points to the fault structure, which contains fields
# faultcode, faultstring, and unprocessed "detail" information.
# fault_nice points to the same information, but translated to
# something what is equivalent in SOAP1.1 and SOAP1.2.
die "Cannot get list of countries: $fault_nice->{reason}\n";
# Have a look at Log::Report for cleaner (translatable) die:
# error __x"Cannot get list of countries: {reason}",
# reason => $fault_nice->{reason};
}
#
# Collecting the country names
#
# According to the WSDL, the returned getCountriesResponse message
# has one part, named 'parameters'. The contents returned is a
# getCountriesResponse element of type complexType getCountriesResponse,
# both defined in the xsd file.
# The only data field is named 'country', and has a maxCount > 1 so
# will be translated by XML::Compile into an ARRAY.
# The received message is validated, so we do not need to check the
# structure ourselves again.
my $countries = $answer->{parameters}{country};
print "getCountries() lists ".scalar(@$countries)." countries:\n";
foreach my $country (sort @$countries)
{ print " $country\n";
}
}
#
# Second example
#
sub get_name_info()
{
# ask the user for a name
my $name = $term->readline("Personal name for info: ");
chomp $name;
length $name or return;
#
# Ask information about the specified name
# (we are not using the country list, received before)
#
my $getNameInfo = $wsdl->compileClient('getNameInfo');
my ($answer, $trace2) = $getNameInfo->(name => $name);
#print Dumper $answer, $trace2;
die "Lookup for '$name' failed: $answer->{Fault}{faultstring}\n"
if $answer->{Fault};
my $nameinfo = $answer->{parameters}{nameinfo};
print "The name '$nameinfo->{name}' is\n";
print " male: ", ($nameinfo->{male} ? 'yes' : 'no'), "\n";
print " female: ", ($nameinfo->{female} ? 'yes' : 'no'), "\n";
print " gender: $nameinfo->{gender}\n";
print "and used in countries:\n";
$format_list = join ', ', @{$nameinfo->{countries}{country}};
write;
}
#
# Third example
#
sub get_names_in_country()
{ # usually in the top of your script: reusable
my $getCountries = $wsdl->compileClient('getCountries');
my $getNamesInCountry = $wsdl->compileClient('getNamesInCountry');
my $answer1 = $getCountries->();
die "Cannot get countries: $answer1->{Fault}{faultstring}\n"
if $answer1->{Fault};
my $countries = $answer1->{parameters}{country};
my $country;
while(1)
{ $country = $term->readline("Most common names in which country? ");
chomp $country;
$country eq '' or last;
print " please specify a country name.\n";
}
# find the name case-insensitive in the list of available countries
my $name = first { /^\Q$country\E$/i } @$countries;
unless($name)
{ $name = 'other countries';
print "Cannot find name '$country', defaulting to '$name'\n";
print "Available countries are:\n";
$format_list = join ', ', @$countries;
write;
}
print "Most common names in $name:\n";
my $answer2 = $getNamesInCountry->(country => $name);
die "Cannot get names in country: $answer2->{Fault}{faultstring}\n"
if $answer2->{Fault};
my $names = $answer2->{parameters}{name};
$names
or die "No data available for country `$name'\n";
$format_list = join ', ', @$names;
write;
}
|