The DOM as an API for XQuery in Java

Is there some open source Java API (ideally not GPL) for creating an object model from an XQuery string?

thank

+1


source to share


3 answers


There is an extremely fast and powerful implementation in Saxon: http://www.saxonica.com/index.html



I've used it a few times in production code and it's pretty good.

+1


source


http://www.gnu.org/software/qexo/



NTN

0


source


http://code.google.com/p/xqpretty/ is an ANTLR based implementation with Apache 2.0 license

It is not really an object model, but it gives a complete AST.

0


source







All Articles