|
Hi Martin,
how can I get all parameters from a SOAP body with one line.
Like this:
sub myMethod {
my ($self, $body) = @_;
# instead
my $name = $body->get_name();
my $age = $body->get_age();
# this
my %person = $body->get_PARAMETERS(); :-)
..
}
Thanks for your help.
Matthias
|