- or download this
sub wsdl {
my $self = shift;
...
return $full_response ? $r : $r->{parameters};
};
}
- or download this
$self->cc($method_name)->(%args);
- or download this
my $r = eval { $f->( @_ ) };
unless ($r) {
my $err = $@;
confess "Error calling SOAP method $op: $err";
}
- or download this
my $r = eval {
my $tmp = $f->( @_ );
...
}
confess "Error calling SOAP method $op: [$err][$eval_e
+rr]";
}