Servlet servlet = null;
try {
servletClass = ctxt.load();
servlet = (Servlet) servletClass.newInstance();
} catch (IllegalAccessException ex1) {
throw new JasperException(ex1);
} catch (InstantiationException ex) {
throw new JasperException(ex);
}
servlet.init(config);
if (!firstTime) {