File: person.pl

package info (click to toggle)
libsoap-wsdl-perl 2.00.10-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,696 kB
  • sloc: perl: 8,422; xml: 1,769; java: 19; makefile: 15
file content (12 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
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";