Help for this page

Select Code to Download


  1. or download this
    ref $res ? $res->faultstring : $soap->transport->status
    
  2. or download this
    if (ref $res){ #$res is a reference and not a scalar
       die $res->faultstring; # exit printing the fault
    ...
    else{
      die $soap->transport->status; #Exit with the current transport statu
    +s of the SOAP object
    }