Read Job

Reads a job from the specified In-Sight job slot.

Read Job Inputs

Syntax: RJ[ID]

Parameter Description

ID

The job ID number (0 to 999).

Read Job Outputs

Returns a status code, followed by a line terminator, followed by lines of job data.

  • The status codes are:

    Status Codes Description
    1

    The command was executed successfully.

    0

    Unrecognized command.

    -1

    The job ID number is outside the allowable range (0 to 999).

    -2 The job could not be read, or the job slot is empty, therefore the command could not be executed.
    -4

    The In-Sight sensor is out of memory.

    -6

    User does not have Full Access to execute the command. For more information, see User Access Settings Dialog.

  • The lines of job data are:

    Name

    The first line contains the job name.

    Size

    The second line contains an integer value for the size (in bytes) of the job.

    Data

    The actual job data is encoded as ASCII hexadecimal values formatted to 80 characters per line. Each line ends with a terminating character.

    CheckSum

    The last line contains four ASCII hexadecimal bytes that are a checksum of the job data.

Read Job Example

To receive information about the job named "85Test.job", which is saved on the In-Sight sensor, issue the following command: RJ85

After issuing the Read Job command, the first line outputted to the telnet window is the status code (1), followed by the job name (85Test.job) and size (1900) in bytes, then the job data (in ASCII hexadecimal format). Finally, the four-byte ASCII hexadecimal checksum is displayed on the last line (48A3).

Note: The size reported by the RJ command will be twice the number of bytes of the actual .JOB file size stored on the In-Sight sensor, due to the ASCII hexadecimal encoding of the data.