> What did you parse > your XML to? A DOM document object? An InputStream? If so, you can > manipulate/do some other transformations, to get the proper parameters for > the transform method.
Unfortunately, I construct a DOM document from scratch using non-XML data. After that, I tranform it with XSLT because some rules are too complicated to implement when I construct the DOM document. The DOM document is a xerces org.apache.xerces.dom.DocumentImpl. I don't think that serializing this tree to get a file that will be unserialized by the Translet is a good idea... since I will loose the potential translet performance gain. Olivier.
