*/
public static void transform(String xmlString, Map<String, Object> xsltParameters, Properties outputProperties,
OutputStream outputStream, URL... xsltUrls) throws Exception {
Pipeline pipeline = new NonCachingPipeline();
pipeline.addComponent(new StringGenerator(xmlString));
for (URL xsltUrl : xsltUrls) {
pipeline.addComponent(new XSLTTransformer(xsltUrl, xsltParameters));
}
pipeline.addComponent(new XMLSerializer(outputProperties));