Using struts 1.01 my tiles-defs looks like:

<definition
    name="action.standard.edit"
    path="template.jsp"
    controllerUrl="/controller.do">
  some other stuff
</definition>

If I define my action like

public class ActionController extends Action {

    public ActionForward perform(ActionMapping mapping,
                                 ActionForm form,
                                 HttpServletRequest request,
                                 HttpServletResponse response)
                          throws ServletException {
.....

my perform methods is called. If I use

public class ActionController extends TilesAction {

    public ActionForward perform( ComponentContext context,
                                 ActionMapping mapping,
                                 ActionForm form,
                                 HttpServletRequest request,
                                 HttpServletResponse response)
                          throws ServletException {

my perform method is *not* called.

Any ideas why??
                          
-- 
Best regards,
Dirk


--
To unsubscribe, e-mail:   <mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>

Reply via email to