There's a JIRA bouncing around for this, and the problem is that the proxy refuses to do the isGreaterZero operation.
On Wed, Sep 9, 2009 at 2:48 PM, <[email protected]> wrote: > Sergey Beryozkin wrote: > > MathHelperImpl should probably have a field 'String name' as well as a > > setName(String name) setter and it might make Aegis happy...Saul, can you > > try it ? > > I tried it (see appended code), but the same exception was thrown on the > server. The call to getName() already works. But the call to > isGreaterZero(int) causes the exception. > > Greetings, > Saul > > > New source of MathHelperImpl: > > package passobject.impl; > import passobject.interfaces.MathHelper; > > public class MathHelperImpl implements MathHelper { > String name = "MyMathHelperWithSetter"; > public void setName(String name) { this.name = name; } > public String getName() { return name; } > > public boolean isGreaterZero(int number) { return number > 0; } > } > > >
