Specifying or Retrieving the Maximum Amount of Sending Retries in the Case of Failure (RetriesCount)

Available in EFT Server 6.1 and later.

The ICIAS2SendActionParams::RetriesCount property allows you to specify or retrieve the maximum amount of sending retries in the case of failure (timeout, network errors, etc.); 0 means ‘no retry if failed’.

HRESULT RetriesCount([out, retval] long* pVal);

HRESULT RetriesCount([in] long newVal);

Example (VBScript):

Retrieving:

If AS2SendParams.RetriesCount = 0 Then

MsgBox "Are you sure no retry is needed for sending failures?"

End If

Specifying:

AS2SendParams.RetriesCount = 5 ‘Try another 5 times if fails to send