This works for me:

<struts>
    <package ...

        <global-results>
            <result name="error" type="redirect">DeadEnd</result>
        </global-results>

    ...
        <action name="DeadEnd" class="com.rp.db.actions.DeadEnd">
            <result>deadEnd.jsp</result>
        </action>

    ...
    </package>
</struts>

The entire action class is:

@SuppressWarnings("serial")
public class DeadEnd extends ActionSupport
{

}

and when any action returns "error" the deadEnd.jsp page is displayed.

- Bill

On Thu, Sep 10, 2009 at 11:49 AM, Jim Collings <jlistn...@gmail.com> wrote:

> Anybody know what the syntax for this is?  I don't seem to be getting it
> right.
>
>
> Jim C.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
> For additional commands, e-mail: user-h...@struts.apache.org
>
>

Reply via email to