If you are trying to do CXF proxy .ie. receive all request to a CXF
webservice by setting up a proxy endpoint this will work
<beans>
<cxf:cxfEndpoint id="soapMessageEndpoint"
address="http://localhost:9000/order" wsdlURL="<your wsdl
on filesystem/server>" endpointName="<endpoint from wsdl>"
serviceName="<servicename from wsdl>">
</cxf:cxfEndpoint>
<camelContext>
<route>
<from url="cxf:bean:soapMessageEndpoint"/>
<to url="jms:xmlorders"/>
</route>
</camelContext>
All namespace resolution is left out.Just to give you an idea.
--
View this message in context:
http://camel.465427.n5.nabble.com/from-webservice-to-queue-tp5729239p5729274.html
Sent from the Camel - Users mailing list archive at Nabble.com.