xsl-list
[Top] [All Lists]

RE: [xsl] XSL Validation with java

2006-07-13 05:27:27
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(_dot_)bishnoi(_at_)adeptia(_dot_)com] 
Sent: 13 July 2006 13:15
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] 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




--~------------------------------------------------------------------
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>
--~--




--~------------------------------------------------------------------
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>