Hallo all,

I want to turn below spring DSL way into java DSL way.
is there any example for reference?

<bean id="testBean"
class="org.apache.camel.example.cxf.provider.TesterBean"/>
 
<cxf:cxfEndpoint id="soapMessageEndpoint"
                
serviceClass="org.apache.camel.example.cxf.provider.GreeterProvider"
                
address="http://localhost:{{port}}/GreeterContext/SOAPMessageService";
                 wsdlURL="wsdl/hello_world.wsdl"
                 endpointName="s:SoapOverHttpRouter"
                 serviceName="s:SOAPService"
                 xmlns:s="http://apache.org/hello_world_soap_http"/>
 
 
<camelContext id="test_context"
xmlns="http://camel.apache.org/schema/spring";>
  <route>
    <from uri="cxf:bean:soapMessageEndpoint"/>
    <to uri="bean:testBean?method=processSOAP"/>
  </route>
</camelContext>



--
View this message in context: 
http://camel.465427.n5.nabble.com/Any-examples-of-JAVA-DSL-for-cxfEndpoint-tp5747647.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to