Hi Raj
>From your mappings example I am assuming the following:
* You have a service method with the following signature:
public void myMethod(MyBean myBean);
* You have a simple pojo that looks something like this:
public class MyBean
{
public void setArg0(String val){...}
public String getArg0() { .... }
}
> <mapping name="myBean">
> <property name="arg0" mappedName="someField" />
> </mapping>
For your scenario to work you will need to remove the fragment above from
the service mappings file and place it in a new mappings file, in the same
package as the MyBean class. The new mappings file must be called
MyBean.aegis.xml.
Cheers
Hannes