Read temporary data file
Anatomy
<temp:read var="var" var_struct="var" id="string"/>
Description: 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
Example
<temp:write var="id">iXML</temp:write>
<output>
<temp:read id="$id"/>
</output>
<!-- iXML -->