Re: action to action with form

2004-11-24 Thread Bill Keese
> So, I have actioclass A and I want to call action class B witch needs > actionform C. > I will use the mappings to chain the response from B to my first > action class A. http://wiki.apache.org/struts/ForwardingWithDifferentParameter

re: action to action with form

2004-11-19 Thread Raffe Paffe
You shouldn't be calling an Action from an Action. Action chaining is not recommended and is considered poor practice. Action classes are an implementation of Command pattern and as such should delegate to reusable business components. I would refactor your business logic embedded in Action classes

RE: action to action with form

2004-11-19 Thread Robert Taylor
You shouldn't be calling an Action from an Action. Action chaining is not recommended and is considered poor practice. Action classes are an implementation of Command pattern and as such should delegate to reusable business components. I would refactor your business logic embedded in Action class