RPC HELP TRPCBroker OnRPCBFailure

From VistApedia
Revision as of 17:37, 4 July 2015 by Kdtop (talk | contribs) (Created page with "<h2>OnRPCBFailure Property</h2> Example <h3>Applies to</h3> TRPCBroker component <h3>Declaration</h3> property OnRPCBFailure: TOnRPCBFailure...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

OnRPCBFailure Property

Example

Applies to

   TRPCBroker component

Declaration

   property OnRPCBFailure: TOnRPCBFailure;

Description

The OnRPCBFailure property is available at run-time only. It holds a procedure to be invoked when the Broker generates an exception that permits an application to handle errors as desired, where TOnRPCBFailure is defined as:

   TOnRPCBFailure = procedure (RPCBroker: TRPCBroker) of object;

The text associated with the error causing the exception will be found in the RPCBError property.

NOTE: If OnFailedLogin is also set, it will handle any login errors and not pass them up.

NOTE: Run the "Error Handling Demo" application (i.e., XWBOnFail.EXE, located in the ..\BDK\Samples\SilentSignOn p [13] directory), to illustrate the effects of TRPCBroker properties related to Error Handling.