- or download this
#!/usr/bin/perl -w
use SOAP::Lite;
...
$t->{name} = "Thomas";
my $r = $soap->hi($t);
print $r->result;
- or download this
$r = $soap->hi($param1,$param2,$param3);
- or download this
my $v = SOAP::Data->type('string')->name(uid => 'Thomas');
my $name = $v->value;
- or download this
sub hi {
my $self = shift;
my $e = shift;
return "Hello $e";
}