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?