XSL-1101:(Fatal Error)DOMSource node as this type not supported
213238Apr 17 2004 — edited May 17 2004Hi,
I tried to use JXTransformer to transform a w3c.dom.Document, I got error: XSL-1101:(Fatal Error)DOMSource node as this type not supported.
here is my code:
org.w3c.dom.Document doc;
PrintWrite write;
transformer.transform(new DOMSource(doc), new StreamResult(writer));
I don't understand the error, according to oracle.xml.jaxp.JXTransformer API, transform(Source source, Result result), it should work.
Thanks,