I use the configuration [1] for the ESB performance test (for ServiceMix + Camel). Hope this helps...
[1] https://github.com/muellerc/esbperformance/blob/1.1.0/servicemix-osgi/proxy/src/main/resources/META-INF/spring/bundle-context.xml Best, Christian On Sat, Dec 22, 2012 at 10:07 AM, thelinh <truongthelinhp...@gmail.com>wrote: > I'm new to camel. > > I want to add following proxy route to soap service as run time. > > from("cxf://http://localhost:8081/CentrelServer/NewWebService?" + > "serviceClass=com.vnitt.webservice.axis.NewWebService" > + > > "&serviceName={http://axis.webservice.vnitt.com/}NewWebService" + > > "&portName={http://axis.webservice.vnitt.com/}NewWebServicePort" + > "&wsdlURL=src/conf/NewWebService.wsdl"). > process(new Processor() { > > public void process(Exchange arg0) throws Exception { > System.out.println("code run here"); > > } > }).to(clientService); > > In the above code i want clientService point to a soap service at address: > http://localhost:9091/Client/NewWebService > > I don't know how to create EndPoint clientService. > > Please help me. > > Thanks > > > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Camel-transport-to-soap-service-tp5724530.html > Sent from the Camel - Users mailing list archive at Nabble.com. > --