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

action to action with form

2004-11-19 Thread Raffe Paffe
Hi I have a system with some action classes that i need to call from my action class. I do not have the source code of the action classes that needs to be called and I can not change them but I know how the actionform is suppose to look and I want to this serverside. So, I have actioclass A and