<?xml version="1.0" encoding="US-ASCII" standalone="no"?>
<!DOCTYPE TASKLIST SYSTEM "esptask.dtd">
<TASKLIST>
<TASK>
<GEN_PARAM>
<!--GEN_PARAM -->
</GEN_PARAM>
<SERV_PARAM>
<!--SERV_PARAM is specific to service type-->
</SERV_PARAM>
</TASK>
...
</TASKLIST>
Specify the XML declaration on the first line and the document type declaration on the second and third lines. Specify exactly as shown below:
<?xml version="1.0" encoding="encoding-type#" standalone="no"?>
<!DOCTYPE TASKLIST SYSTEM "esptask.dtd" [
]>
The document type declaration on the second and third lines can be specified as shown below:
<!DOCTYPE TASKLIST SYSTEM "esptask.dtd">
Table 7-9 XML definition
XML tag | Mandatory | Role of tag and value to be specified |
---|---|---|
<TASKLIST>...</TASKLIST> | Y | Indicates a list of measurement conditions. This tag contains one or more <TASK> tags. A new <TASK> tag can start immediately after a </TASK> tag. |
<TASK>...</TASK> | Y | Indicates a single measurement condition. This tag contains one set consisting of a <GEN_PARAM> tag and a <SERV_PARAM> tag. |
<GEN_PARAM>...</GEN_PARAM> | Y | Contains the <TASKID>, <INTERVAL>, and <TIMEOUT> measurement condition tags, which contain parameters that do not depend on the target service. For details, see 7.3.2 Format and definition of measurement conditions (common section). |
<SERV_PARAM>...</SERV_PARAM> | Y | Contains measurement condition parameters that depend on the target service. This tag contains one of the <HTTP>, <HTTPS>, <SMTP>, <POP3>, <IMAP4>, <DNS>, <DHCP>, <FTP>, <TCP>, <WEBTRANS>, < IESCENA >, or <USERSERV> tags. For details, see 7.3.3 Format and definition of measurement conditions (service-specific condition sections). |