0 0 Bar Foo #### age 0 phone ID 0 surname Bar first Foo #### package testSoap; sub get { print STDERR "module called\n"; my ( $self, $id ) = @_; my $userinfo = [ bless ({ key => 'ID', value => 0 }, "item"), bless ({ key => 'first', value => 'Foo' }, "item"), bless ({ key => 'surname', value => 'Bar' }, "item"), bless ({ key => 'age', value => 0 }, "item"), bless ({ key => 'phone', value => '' }, "item") ]; return bless $userinfo, "Map"; } 1; #### #### ####