Re: [S2] @Result annotation not working

2007-02-08 Thread Dave Newton
--- Laurie Harper [EMAIL PROTECTED] wrote: What do I need to do to make @Result annotations on my action methods work? What doesn't work/what are the symptoms? I had it working under 2.0.4 (w/ the 2.0.4 jars, anyway) until it seemed I wouldn't be able to use it because of an apparent conflict

Re: [S2] @Result annotation not working

2007-02-08 Thread Ian Roughley
Do you have the web.xml init-param actionPackages listing the package that the action is in? /Ian Dave Newton wrote: --- Laurie Harper [EMAIL PROTECTED] wrote: What do I need to do to make @Result annotations on my action methods work? What doesn't work/what are the symptoms? I

Re: [S2] @Result annotation not working

2007-02-08 Thread Laurie Harper
Dave Newton wrote: --- Laurie Harper [EMAIL PROTECTED] wrote: What do I need to do to make @Result annotations on my action methods work? What doesn't work/what are the symptoms? I had it working under 2.0.4 (w/ the 2.0.4 jars, anyway) until it seemed I wouldn't be able to use it because of

[S2] @Result annotation not working

2007-02-07 Thread Laurie Harper
What do I need to do to make @Result annotations on my action methods work? I'm using the code-behind and zero-config plugins, and tried to add the annotation like this: @Result(value = users, type = ServletActionRedirectResult.class) public String save() {