- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
XML design, part 3: XPath, XSLT
Thu, 2009-12-10, 18:35
The "\" and "\\" operators are methodes of scala.xml.NodeSeq. They do a good job
for simple tasks. But they have significant limitations: find the n.-th
subelement, find subelement by name, find parent or sibling element, functions
like 'number of subelements', ... . So there is the question, how to support the
wide range of XPath?
The same problem arise with XSLT. Scala's pattern matching mechnismem is great
for simple things. But when you want to express all the XSLT possiblities by
equivalent pattern matching constructs you have to do a hard job. And some
things would not work at all: As XSLT is build on XPath, one can address parent
nodes.
Again, my recomondation is using Xerces and Xalan which are part of JRE. Again,
we may need a wrapper layer (which will also help for .NET integration).
Cheers, Jürgen