[
https://jira.jboss.org/jira/browse/JBWS-2766?page=com.atlassian.jira.plug...
]
Jim Ma commented on JBWS-2766:
------------------------------
Now we can use this two ways to enable the aegis databinding :
(1) provides a jbossws-cxf.xml :
<bean id="aegisBean"
class="org.apache.cxf.aegis.databinding.AegisDatabinding"
scope="prototype" />
<bean id="aegis-service-factory"
class="org.apache.cxf.jaxws.support.JaxWsServiceFactoryBean"
scope="prototype">
<property name="dataBinding" ref="aegisBean" />
</bean>
<jaxws:endpoint id='AegisGroupQueryService'
address='http://@jboss.bind.address@:8080/jaxws-aegis'
implementor='org.jboss.test.ws.jaxws.cxf.aegis.AegisGroupQueryImpl'>
<jaxws:serviceFactory>
<ref bean='aegis-service-factory' />
</jaxws:serviceFactory>
<jaxws:invoker>
<bean class='org.jboss.wsf.stack.cxf.InvokerJSE' />
</jaxws:invoker>
</jaxws:endpoint>
(2) add the @Databinding annotation to SEI :
@WebService(name="AegisGroupQuery")
@DataBinding(AegisDatabinding.class)
public interface HelloWorld
{
@WebMethod
Map getMembers();
}
Provide a testcase for Aegis binding
------------------------------------
Key: JBWS-2766
URL:
https://jira.jboss.org/jira/browse/JBWS-2766
Project: JBoss Web Services
Issue Type: Task
Security Level: Public(Everyone can see)
Components: jbossws-cxf
Reporter: Alessio Soldano
Assignee: Jim Ma
Fix For: jbossws-cxf-3.2.1
http://www.jboss.org/index.html?module=bb&op=viewtopic&t=160775
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira