Help for this page

Select Code to Download


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