// System.out.println("PDFXSLType " + new File((XSLDir) + "/preprocessor_" + aReq.getParameter("PDFXSLType").replaceAll(".xsl", ".xslt")));
// System.out.println("PDFXSLType " + new File((XSLDir) + "/preprocessor_" + aReq.getParameter("PDFXSLType").replaceAll(".xsl", ".xslt")).exists());
File preProcessorFile = new File((XSLDir) + "/preprocessor_" + MyRequest.getParameter("PDFXSLType", parameterMap).replaceAll(".xsl", ".xslt"));
if (preProcessorFile.exists()) {
TrasformXslt20 trasformXslt = new TrasformXslt20();
String trasfomed = trasformXslt.xslt(xmlString, new FileInputStream(preProcessorFile));
// System.out.println("XML2PDF.executePDFPrint()");
// System.out.println(trasfomed);
xmlString = trasfomed;
// System.out.println("XML2PDF.executePDFPrint()");
}