Re: Chains - 1.3.5

2006-12-19 Thread Joseph McGranaghan
Yes, that works perfectly! A whole lot cleaner too. Now people will find this in the archives. Thanks, Joe Niall Pemberton wrote: On 12/19/06, Joseph McGranaghan <[EMAIL PROTECTED]> wrote: Solved my problem: ActionContext ac = (ActionContext)context; ac.setForwardConfig(new ActionForwar

Re: Chains - 1.3.5

2006-12-19 Thread Niall Pemberton
On 12/19/06, Joseph McGranaghan <[EMAIL PROTECTED]> wrote: Solved my problem: ActionContext ac = (ActionContext)context; ac.setForwardConfig(new ActionForward("/myaction.do")); If anyone has a cleaner, non-hardcoded my, I'm all ears! Can you not just do this as one action mapping and specify

Re: Chains - 1.3.5

2006-12-19 Thread Joseph McGranaghan
Solved my problem: ActionContext ac = (ActionContext)context; ac.setForwardConfig(new ActionForward("/myaction.do")); If anyone has a cleaner, non-hardcoded my, I'm all ears! Thanks, Joe Joseph McGranaghan wrote: This should be simple, but for the life of me I can't get find the answ