I'm currently looking into using XSLT 2.0, but I cannot find any open-source java implementations (Saxon-B seems to fit the bill, but isn't schema-aware).

Am I missing something?

link|improve this question

45% accept rate
Seems like you mean schema-aware processor ? Every XSLT processor (1.0 and 2.0) is namespace-aware. Please, edit your question and correct this. – Dimitre Novatchev Feb 12 '09 at 14:27
Thanks for spotting this, Dimitre, I fixed my question. – otto.poellath Feb 26 '09 at 21:01
feedback

5 Answers

Yes, I'm answering my own question from 2.5 years ago:

I haven't tried it yet, but I just stumbled upon Eclipse PsychoPath, which is (according to the docs) a XPath 2.0 XML Schema Aware processor that passes 96% of the XPath 2.0 test suite (version 1.1M1).

link|improve this answer
In the question you ask for an XSLT 2.0 processor. But this answer is about an XPath 2.0 processor. – mzjn Mar 8 at 20:01
Thanks for catching this, mzjn. I was actually looking for both, and got them mixed up. I've removed the accepted answer flag from my own answer. – otto.poellath Mar 28 at 10:47
feedback

Search or ask this question at the xsl-list. Michael Kay might answer himself.

link|improve this answer
Thanks, I might give that a try at some point. – otto.poellath Feb 10 '09 at 18:42
Down voted for reference to a competing Q&A site? – dacracot Mar 5 '10 at 16:03
feedback

For the archive, there's also AltovaXML, the free-as-in-beer, schema-aware XSLT 2.0 engine used in XMLSpy etc.

Unfortunately, like XMLSpy, it's Windows only.

link|improve this answer
feedback

Are you sure you really need a namespace aware processor? It might help find errors in the stylesheets quicker but the cost might outweigh the benefit (both in terms of money, and license-wise).

Saxon-SA is the schema-aware version of Saxon B. It includes the open source Saxon B in full (published under the Mozilla Public License). It's only the "schema-aware" stuff which is closed source, so most of it is still free software (though only as in free speech..).

link|improve this answer
1  
Well, I work with namespaces a lot when implementing web services, and cannot pretend they wouldn't exist.. I know about Saxon-SA and Saxon-B, but was wondering if there really is no open source alternative. Especially since XSLT 2.0 isn't exactly brand new.. – otto.poellath Feb 10 '09 at 18:41
Sad, but true that I haven't yet found one. And the Oracle I've used (proprietary) is not good either. Hope somebody comes thru – Overflown Feb 26 '09 at 21:04
feedback

I couldn't find one either. I ended up using the oracle xml libs.

link|improve this answer
Thanks, I'll be looking into this. – otto.poellath Feb 10 '09 at 18:42
feedback

Your Answer

 
or
required, but never shown

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