IPlaybackControl.FinalClientRetry Method

Definition

Informs the client-side exception-handling component that all Message Queuing attempts to deliver the message to the server were rejected, and the message ended up on the client-side Xact Dead Letter queue.

public:
 void FinalClientRetry();
public void FinalClientRetry ();
abstract member FinalClientRetry : unit -> unit
Public Sub FinalClientRetry ()

Remarks

As messages arrive in the Xact Dead Letter queue, COM+ attempts to invoke a client-side exception handler related to the server class to deliver this notification. It does so by first calling FinalClientRetry, then calling the exception-handling version of the failed method in the exception-handler object. This exception method can then take an exception action, such as recording the failure, sending a mail message to the administrator, or taking client-side compensating action (reversing the effect of an earlier transaction). If the exception method is not successful, the message is left on the Xact Dead Letter queue.

The Xact Dead Letter queue can be viewed in the Microsoft Message Queue (MSMQ) Explorer.

Applies to