xsl-list
[Top] [All Lists]

[xsl] XSL Validation with java

2006-07-13 05:13:14
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




--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>