Using AEGIS, CXF 2.1.3, and Simple Front End on both Server/Client and received
the following error.
org.apache.cxf.interceptor.Fault: No write method for property
{http://regmgmt.services.xyz}success
That's because by response class extends from a response base class that has a
isSuccess() method. The isSuccess() checks a few other instance members to
decide whether to return true or false. Ie. there is no success instance
member.
It looks like I have to make a no-op setSuccess() method, but that's kind of
ugly. Is there a way to get around this? To get AEGIS to ignore certain
methods? I'd rather avoid direct annotation and stay with Spring, but if there
is no other options, then I can go with annotation.
Thanks...