-
-
-
- Resource files
- Velocity - How does it work?
- Quick Velocity Tutorial
- Debugging velocity scripts
- Velocity Command Reference
- Script Editor Tutorial
- Using velocity for calculations
- Using predefined forms in a html design
- Velocity forms
- Data field identifiers
- Macros and methods
- Velocity library
- Velocity: using the #macro command
- velocity and xml
- Using AJAX in your velocity scripts
-
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