Note the following syntax changes:
In Chapter 3, “Developing Applications, in the “Update Agent” subsection, on page 66, in the code starting with “The agent has the skeleton code ready,” the first two lines are punctuated incorrectly:
The agent has the skeleton code ready
to send mail
‘TODO :
' 1. Fetch values from document
' 2. Based on values fetched send mail
The correct punctuation includes single quote marks as shown:
'The agent has the skeleton code ready
to send mail
'TODO :
' 1. Fetch values from document
' 2. Based on values fetched send mail
On page 69, the following XML statement is missing an ending double quote mark:
xml="<Record><Field label=""Index"" position=""1"">Status</Field>
The agent requires the ending double quote mark to work:
xml="<Record><Field label=""Index"" position=""1"">Status</Field>"