posted 19 years ago
Here is the flow
1.I have a ListAction extends BaseAction.
2.ListAction has a method
public ActionForward docList(
ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response)
throws Exception {
System.out.println("Heloo I am here *********************");
return mapping.findForward("listPage");
}
2.BaseAction extends LookupDispatchAction
Base action overrrides execute method for doing some authentiucation.
When the request comes, the execute method being called in BaseAction and After completing ececute method in BaseAction the control is not coming to child class(ListAction) and not executing docList method.
Can some one explain me how to do this?