Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

thanks

share|improve this question

3 Answers

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

I've used it a number of times in production code and it is very good.

share|improve this answer

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

It's not quite an object model, but produces a full AST.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.