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

Our shop develops platform on which multiple core products and customer specific implementations are built. The platform has been around for 5 years and now we are trying to re-think/re-platform. As the platform owner, below are the few key principles I am planning to adhere to

  • Be as close as possible to the Java EE spec
  • Limit or eliminate dependencies on 3rd party libraries
  • Make the contracts explicit of the platform components and if possible make then as osgi compliant bundles
  • Be compliant to the standards (for non Java EE stuff)

So we depend lot on JAXP and XSLT for transformations. We had frequent issues with the XSLT style sheets when we were deploying on different vendor app servers and also different versions of the app server from same vendor. Most of the time the issues are

  1. Using parser-impl specific stuff in XSLT
  2. Bundles the parser implementations with-in the app
  3. Using XSLT 2.0/XPath 2.0 with JAXP 1.3 etc etc

I need some help in below

  1. Where can I check the compliance of my XSLT's for 1.0 as JAXP 1.4 supports onlty XSLT 1.0 and Xpath 1.0?
  2. Is there a list of supported finctions etc for XSLT 1.0 (I am looking something similar to javadoc for XSLT and XPath
share|improve this question
Good question, +1. See my answer for detailed recommendations and links. – Dimitre Novatchev Nov 11 '10 at 16:47

1 Answer

up vote 3 down vote accepted

I need some help in below

  1. Where can I check the compliance of my XSLT's for 1.0 as JAXP 1.4 supports onlty XSLT 1.0 and Xpath 1.0?
  2. Is there a list of supported finctions etc for XSLT 1.0 (I am looking something similar to javadoc for XSLT and XPath
  1. One of the best ways to check particular XSLT code for compliance is to use (more than one) compliant XSLT processors. For example, it is almost certain that your code is compliant if it runs successfully with both Saxon 6.5.5 and MSXML4/6.

  2. The standard supported XSLT 1.0 and XPath 1.0 functions are specified in the corresponding specifications. Also this survey by Jesper Tverskov can be very useful.

share|improve this answer
+1 Good answer. In addition to this, there is XQuery test suit, but unfortunately there is no XSLT/XPath test suit (There was some 3er party test suit but it's a broken link in W3C matrix.) – user357812 Nov 11 '10 at 21:29
1  
@Alejandro: There is a W3C XSLT test suite but it isn't public.Also, an such test suit is designed to test a particular XSLT processor for compliance -- not user code for using only standard features. So, these tests are not what the OP is looking for. – Dimitre Novatchev Nov 11 '10 at 22:22

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.