git-cpan-module: SOAP-WSDL git-cpan-version: 2.00_26 git-cpan-authorid: MKUTTER git-cpan-file: authors/id/M/MK/MKUTTER/SOAP-WSDL-2.00_26.tar.gz
11 lines
266 B
Perl
11 lines
266 B
Perl
use lib 'lib';
|
|
use MyInterfaces::TestService::TestPort;
|
|
|
|
my $soap = MyInterfaces::TestService::TestPort->new();
|
|
$soap->outputxml(1);
|
|
my $result = $soap->ListPerson({});
|
|
|
|
# print "Found " . scalar @{ $result->get_out->get_NewElement } . " persons\n";
|
|
|
|
print $result;
|