config = (ApplicationConfig)
pageContext.getServletContext().getAttribute
(Action.APPLICATION_KEY);
}
if (config != null)
forward = (ActionForward) config.findForwardConfig(name);
if (forward == null) {
JspException e = new JspException
(messages.getMessage("forward.lookup", name));
RequestUtils.saveException(pageContext, e);
throw e;