* as <b>is</b>. Transformation is performed according to the <b>xsltFile</b>. The xslt file is looked up using a
* {@link org.jboss.cache.util.FileLookup}
*/
public void parse(InputStream is, OutputStream os, String xsltFile) throws Exception
{
InputStream xsltInStream = new FileLookup().lookupFile(xsltFile);
Document document = getInputDocument(is);
// Use a Transformer for output
Transformer transformer = getTransformer(xsltInStream);