Hi , I think the default Data Binding in the ServiceFactory is JaxbDatabinding. That's why you need to do when you want to use AegisDatabinding.
Willem. yulinxp wrote:
Why/when is it needed to set AegisDatabinding for client at all ?
ClientProxyFactoryBean factory = new ClientProxyFactoryBean();
factory.setServiceClass(HelloWorld.class);
factory.setAddress("xxxx");
factory.getServiceFactory().setDataBinding(new AegisDatabinding());
HelloWorld hw = (HelloWorld)factory.create();
