git-cpan-module: SOAP-WSDL git-cpan-version: 2.00_28 git-cpan-authorid: MKUTTER git-cpan-file: authors/id/M/MK/MKUTTER/SOAP-WSDL-2.00_28.tar.gz
13 lines
289 B
Perl
13 lines
289 B
Perl
use strict;
|
|
use warnings;
|
|
use lib 'lib';
|
|
use MyInterfaces::TestService::TestPort;
|
|
|
|
my $soap = MyInterfaces::TestService::TestPort->new();
|
|
|
|
my $result = $soap->ListPerson({})
|
|
or die "error calling SOAP method";
|
|
|
|
print "Found " . @{ $result->get_out()->get_NewElement } . " persons\n";
|
|
|