Specifying or Retrieving Username whose AS2 Outbound Profile is Used for this AS2 Send Operation (ClientProfile)

icon_info.gif

Available in EFT Server 6.1 and later.

The ICIAS2SendActionParams::ClientProfile property allows you to specify or retrieve username of AS2 partner whose AS2 Outbound Profile will be used for this AS2 Send operation. This property is applicable only if UseClientProfile = True.

HRESULT UseClientProfile([out, retval] VARIANT_BOOL* pVal);

HRESULT UseClientProfile([in] VARIANT_BOOL newVal);

Example (VBScript):

Retrieving:

If AS2SendParams.UseClientProfile Then

MsgBox AS2SendParams.ClientProfile & "’s AS2 profile will be used"

End If

Specifying:

AS2SendParams.UseClientProfile = True

AS2SendParams.ClientProfile = "Some_User"