Chapter 4. RxFtp Additional Method Attributes

Table of Contents
CmdResponse
CR_Remove
Debug
FtpErrno
Response

The following sections describe the additional method attributes available in the RxFtp class.

CmdResponse

The CmdResponse method attribute is an Object Rexx array which contains the commands sent to the FTP server and the responses received from the server. Items are continually added to this array for each method invoked during the session with the server.

This array is a complete record of the command/response activity between the client and the server.

Example:

The following will display the CmdResponse array.

do i = 1 to myftpobj~cmdresponse~items
   say myftpobj~cmdresponse[i]
end