You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by Postfach 4711 <po...@gmx.de> on 2002/11/11 16:10:12 UTC

[TILES Definitions and Tiles Action

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:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>