Specifying or Retrieving the Path on AS2 Server to Send AS2 File (RemotePath)

Available in EFT Server 6.1 and later.

The ICIAS2SendActionParams::RemotePath property allows you to specify or retrieve the path to which you are sending an AS2 file.

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

HRESULT RemotePath([in] long newVal);

Example (VBScript):

Retrieving:

sURL = AS2Params.Host & ":" & CStr(AS2Params.Port) & AS2Params.RemotePath

Specifying:

AS2SendParams.RemotePath = "/AS2.aspx"

Related Topics