I created a cxf-servlet.xml file with the contents as below. I still can't seem to leverage XMLBeans. Other than adding the dataBinding bean, is there anything else I need to do?
============================================= <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws" xmlns:soap="http://cxf.apache.org/bindings/soap" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://cxf.apache.org/bindings/soap http://cxf.apache.org/schemas/configuration/soap.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd"> <jaxws:server id="messagingService" serviceClass="com.company.service.JmsQueueSender" address="/messaging"> <jaxws:serviceBean> <bean class="com.company.service.impl.JmsQueueSenderImpl" /> </jaxws:serviceBean> <jaxws:dataBinding> <bean class="org.apache.cxf.xmlbeans.XmlBeansDataBinding"/> </jaxws:dataBinding> </jaxws:server> </beans> -- View this message in context: http://www.nabble.com/Converting-from-Simple-FrontEnd-to-JAX-WS-FrontEnd-tp19804700p19805301.html Sent from the cxf-user mailing list archive at Nabble.com.
