Re: using an InputStream with XSLTInputHandler

2002-06-14 Thread Jeremias Maerki
The Transformer class is part of JAXP, an standard API for XML processing. Transformer represents an XSLT-Engine. JAXP (and therefore Transformer) is part of JDK 1.4 or for older versions, you'll find it in in the Xalan distribution (xml-apis.jar) for example. Knowledge about JAXP has become a bas

RE: using an InputStream with XSLTInputHandler

2002-06-14 Thread vinod . nayak
InputStream with XSLTInputHandler Amine AMAR wrote: > Hi All, > > I need to use XSLTInputHandler with an runtime generated xml document. I > would like to just stream-line it to XSLTInputHandler and not use the file > system. > is there a way to do so? or a workarround? This has

Re: using an InputStream with XSLTInputHandler

2002-06-13 Thread J.Pietschmann
Amine AMAR wrote: Hi All, I need to use XSLTInputHandler with an runtime generated xml document. I would like to just stream-line it to XSLTInputHandler and not use the file system. is there a way to do so? or a workarround? This has just been answered yesterday. Driver driver =new Driver();

using an InputStream with XSLTInputHandler

2002-06-13 Thread Amine AMAR
Hi All, I need to use XSLTInputHandler with an runtime generated xml document. I would like to just stream-line it to XSLTInputHandler and not use the file system. is there a way to do so? or a workarround? Thank's Amine