* @throws Exception
* if the application business logic throws an exception.
*/
protected ActionForward dispatchMethod(ActionMapping mapping, ActionForm form, HttpServletRequest request,
HttpServletResponse response, String name, Method method) throws Exception {
ActionForward forward = null;
try {
Object[] args = { mapping, form, request, response };
forward = (ActionForward) method.invoke(actionInstance, args);