[xsl] XSL Validation with java

Subject: [xsl] XSL Validation with java
From: "Pankaj Bishnoi" <pankaj.bishnoi@xxxxxxxxxxx>
Date: Thu, 13 Jul 2006 17:45:29 +0530
Hi Group
              I have to validate the XSL generated for any errors. Right now
i am using java code for doing that but the exception thrown does not point
to the part of xsl from where the exception was thrown. It just gives the
error message. If there are more than one error in xsl then only first error
is been thrown. The code is::

Here assume that temp string contains xsl::

  TransformerFactory tFactory = TransformerFactory.newInstance();
  Templates translet = null;
  try {
   translet = tFactory.newTemplates(new StreamSource(new
ByteArrayInputStream(temp.getBytes())));
  } catch (TransformerConfigurationException e) {
    e.printStackTrace();
  }

Is there any other way i can do XSL validation in java?
Thanks for any help in advance.

regards
pankaj

Current Thread