rd.include(request.getRequest(), request.getResponse());
}
catch (ServletException e)
{
log.warn("The included login template file threw the exception.", e);
throw new PipelineException("The included login template file threw the exception.", e);
}
catch (IOException e)
{
log.warn("I/O error occurred on the included login template file.", e);
throw new PipelineException("I/O error occurred on the included login template file.", e);
}
// Pass control to the next Valve in the Pipeline
context.invokeNext(request);
}