Re: I don't understand CXF Endpoints.

2015-06-25 Thread desenfoque
Thanks! It work! (I used a pollEnrich to setup a timeOut) Sigh! I must read more about integration patterns... -- View this message in context: http://camel.465427.n5.nabble.com/I-don-t-understand-CXF-Endpoints-tp5768517p5768587.html Sent from the Camel - Users mailing list archive at Nabble.

Re: I don't understand CXF Endpoints.

2015-06-23 Thread Karel Bernolet
You might want to have a look at the Content Enricher EIP with a Polling Consumer (pollEnrich). On Tue, Jun 23, 2015 at 8:00 PM, desenfoque wrote: > Hi... > > I have this route, the endpoint is a cxf webservice (soap) > > from("cxf:bean:servicioRecepcionNotas") > .convertBodyTo(Entra

I don't understand CXF Endpoints.

2015-06-23 Thread desenfoque
Hi... I have this route, the endpoint is a cxf webservice (soap) from("cxf:bean:servicioRecepcionNotas") .convertBodyTo(Entrada.class) .process(new ProcessorTratarWS()) .to(WS_VALIDAR). .transform().method(WebServiceUtils.class,"respuesta(${property.estado})");