Member
|
Description
|
SoapFault property
|
In traditional error handling, SOAP-fault information is available from the ERROR-OBJECT-DETAIL property of the ERROR-STATUS handle after a Web service call is invoked with the NO-ERROR option. In structured error handling, you can access the same information using a CATCH statement for the Progress.Lang.SoapFaultError object. The SoapFault property in this object contains the handle to the SOAP-fault object. The Soap-Fault-Detail property of the system handle provides the full detail about the original SOAP fault.
|
DO ON ERROR UNDO, THROW:
. . . CATCH anySoapFaultErrorObject AS Progress.Lang.SoapFaultError: . . . END CATCH. CATCH anySystemErrorObject AS Progress.Lang.SysError: . . . END CATCH. END. /* DO */ |