velocity and xml

 

XML Processing

Create a org.w3c.dom Document.

#set($xml = "rabbitcameljohn") #set($document = $session.getXMLDocument($xml))


The result is a DOM document which you can access by using the methods from http://java.sun.com/webservices/docs/1.6/api/org/w3c/dom/Document.html

Example.

To get the first element in the example above:

#set($list = $document.getElementsByTagName("animal"))
#set($node = $list.item(0))
#set ($firstChild = $node.getFirstChild())

To display the value of the first child use

#set ($value = $firstChild.getNodeValue()) $value