String xslFile = config.getInitParameter("xslFile");
String defaultStandardQueryParserField = config.getInitParameter("defaultStandardQueryParserField");
//Load and cache choice of XSL query template using QueryTemplateManager
queryTemplateManager = new QueryTemplateManager(
getServletContext().getResourceAsStream("/WEB-INF/" + xslFile));
//initialize an XML Query Parser for use by all threads
xmlParser = new CorePlusExtensionsParser(defaultStandardQueryParserField, analyzer);
} catch (Exception e) {