User Guide

21
Table 2-1 Elements of request XML
Name of element Description
request A root element of request XML.
COMMAND An element specifying a basic command.
abort An element specifying a behavior in case of error. If set to true, the
process is stopped. If set to false, the process runs on. If this
element does not exist, true is used.
This setting is only used when multi commands are defined in a
request XML.
instance An element grouping a target, options and properties.
ufip An element specifying a target of the command.
options An element grouping option elements.
option An element corresponding to option.
properties An element grouping property elements.
property An element corresponding to property.
name An element holding a name of option or property.
value An element holding a val element.
val An element holding a value of option or property.
include An element specifying an included XML file.
file An element specifying a file.
2.1.3 Examples
Followings are typical command's input method using shell mode and XML interface.
Example
Execute 'show' command to '/'.
->show /
<?xml version="1.0" encoding="UTF-8"?>
<request>
<show>
<instance>
<ufip>/</ufip>
</instance>
</show>
</request>