Subject: RE: XSL Validation with java
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Thu, 13 Jul 2006 13:26:56 +0100
|
You can set an ErrorListener on the fTactory object to receive notification
of compile-time errors.
Michael Kay
http://www.saxonica.com/
> -----Original Message-----
> From: Pankaj Bishnoi [mailto:pankaj.bishnoi@xxxxxxxxxxx]
> Sent: 13 July 2006 13:15
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: XSL Validation with java
>
> 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
|