//String sXsltPath = Val.chkStr(request.getParameter("xslt"));
//String sMimeType = Val.chkStr(request.getParameter("mimeType"));
//String sContentDisposition = Val.chkStr(request.getParameter("contentDisposition"));
StringAttributeMap cfgParams = context.getCatalogConfiguration().getParameters();
String sCfgPfx = "catalog.cart.processor.mergeThenTransform";
String sXsltPath = Val.chkStr(
cfgParams.getValue(sCfgPfx+".xslt"));
String sProperties = Val.chkStr(
cfgParams.getValue(sCfgPfx+".xslt.properties"));
String sMimeType = Val.chkStr(
cfgParams.getValue(sCfgPfx+".response.mimeType"));
String sContentDisposition = Val.chkStr(
cfgParams.getValue(sCfgPfx+".response.contentDisposition"));
if ((keys.length > 0) && (sXsltPath.length() > 0)) {
XsltTemplate template = this.getCompiledTemplate(sXsltPath);
ServletOutputStream out = response.getOutputStream();