<!-- Setting the input uri and xpath -->
<arc:set attr="xml.uri" value="[FilePath]" />
<arc:set attr="xml.xpath" value="/Items/colors" />
<!-- Calling the operation, passing in the xml item -->
<arc:call op="xmlDOMSearch" in="xml" >
<!-- Inside the call you can reference elements at paths relative to the input "xpath" -->
<!-- In this example each color and example is written to the output data -->
<arc:set attr="_log.info" value="Color = [xpath(color)]" />
<arc:set attr="_log.info" value="Example = [xpath(example)]" />
</arc:call>
<!-- Setting the output file and pushing the file out -->
<arc:set attr="output.filepath" value="[FilePath]" />
<arc:push item="output" />