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
day, November 19, 2004 7:18 AM > To: [EMAIL PROTECTED] > Subject: action to action with form > > > > 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 b

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