Read temporary data file
XML
<temp:read var="var" var_struct="var" id="string"/>
<temp:read /> reads the entire content of a temporary data file.
<temp:read /> is the complement of the <temp:write /> operation.
Attributes
| Name | Type | Description | Defined By |
|---|---|---|---|
| var | var | Result variable name | temp:read |
| var_struct | var | Result variable name for structural value | temp:read |
| id | string | Identifier | temp:read |
Results
| Binding | Type | Predicate |
|---|---|---|
| var | string | N/A |
| var_struct | N/A |
Examples
XML
<temp:write var="id">iXML</temp:write>
<output>
<temp:read id="$id"/>
</output>
<!-- iXML -->