Re: DispatchAction Need to Subclass Help

2005-04-07 Thread Rick Reumann
Would it work for you if you changed your BaseActionUA class to extend DispatchAction instead of Action and then in your execute you'll have to do a bit of logic to decide if you want to act as your standard Action (and in your case call executeAction method) or instead call super(...) and thus

Re: DispatchAction Need to Subclass Help

2005-04-07 Thread Hubert Rabago
Take a look at the ActionDispatcher class attached to http://issues.apache.org/bugzilla/attachment.cgi?id=12768 . The javadoc of that class explains how it's used. Hubert On Apr 7, 2005 4:01 PM, Scott Purcell <[EMAIL PROTECTED]> wrote: > Hello, > > In an application that I am coding, I had the n

DispatchAction Need to Subclass Help

2005-04-07 Thread Scott Purcell
Hello, In an application that I am coding, I had the need to subclass the Action class in order to take care of some session handling. So I subclass this type scenario in all my action classes: ## abstract public class BaseActionUA extends Action { public ActionForward execute(Act