Processing DXL stream

Using Java, I am iterating through a document collection and using the document.generateXML method to obtain an XML string of each document. I would like to send the string output from that method through the XSLProcessor.process method so I can do a transform.

Right now I have it working but only if the input is a file saved on disk. This requires writing the XML string to a file and then reading it back in - not too efficient. Anybody know what I need to do to get the process to accept the string from generateXML?

Subject: Processing DXL stream

You can pipe it through…just like a pipe…you push through the input and it goes through…

Set up the DXL exporter,XSL transformer objects and then say call exporter.Process

Check in the help file you will find more documentation…