Example 2: set-xpath-eval with values from Param
In this example we show param substitution. Any element named
<param> within an stm operation element is substituted by the
document fragment within the param document at the location given by the
<param> xpath attribute. In this case we show how the value substituted
from the param is actually into an xpath expression which is then evaluated and the result
is placed in the operations xpath target.
In detail, this example does an xpath concatenation to form a string with literals interspersed with values
obtained from the param. The targets are the food attributes of /a/b/c
<idoc> <seq> <instr> <type>stm</type> <operand>doc.xml</operand> <operator> <stm:group xmlns:stm="http://1060.org/stm"> <stm:set-xpath-eval xpath="/a/b[1]/c/@food">
concat('I like ',.,', but I prefer ',' <stm:param xpath="/i/j[1]/k/text()" />')
</stm:set-xpath-eval> <stm:set-xpath-eval xpath="/a/b[2]/c/@food">
concat('I likes ',.,' and I will eat ',' <stm:param xpath="/i/j[1]/k/text()" />,',' but I really prefers ',' <stm:param xpath="/i/j[2]/k/text()" />')
</stm:set-xpath-eval> </stm:group> </operator> <param>param.xml</param> <target>this:response</target> </instr> </seq> </idoc>
Try it
 |