This is my cxf-servlet.xml that works (using Simple FrontEnd now) -

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans";
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
      xmlns:simple="http://cxf.apache.org/simple";
      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/simple 
                http://cxf.apache.org/schemas/simple.xsd";>

  <simple:server id="messagingService"
serviceClass="com.company.service.JmsQueueSender" 
        address="/messaging">
        
        <simple:serviceBean>
                <bean class="com.company.service.impl.JmsQueueSenderImpl" />
        </simple:serviceBean>   
  </simple:server>
  
</beans>

This is what I am attempting to do:
1. Migrate to the JAX-WS frontend.
2. Leverage XMLBeans Data Binding.

Given that, here are my questions:

1. What should the configuration look like in the JAX-WS case?
2. Does it matter what I name the file (so long as it is dropped in the
WEB-INF folder)?
-- 
View this message in context: 
http://www.nabble.com/Converting-from-Simple-FrontEnd-to-JAX-WS-FrontEnd-tp19804700p19804700.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to