Help for this page

Select Code to Download


  1. or download this
        $soap->on_fault(
            sub {
                my ( $soap, $res ) = @_;
    ...
                    die "Soap Fault: " . $soap->transport->status . "\n";
                }
            } );
    
  2. or download this
    eval {
        $soap->Method("arguments");
    ...
    if ($@) {
        // provide some user feedback about the error in $@
    }