Re: Splitter Question

2017-01-05 Thread Claus Ibsen
Hi Yeah see the this EIP and the _splitter only_ section http://camel.apache.org/composed-message-processor.html On Thu, Jan 5, 2017 at 12:01 AM, Gershaw, Geoffrey A. wrote: > Hi All, > > I am on version 2.17 and am splitting a json document and passing bits of > json to a processor. If the pro

Splitter Question

2017-01-04 Thread Gershaw, Geoffrey A.
Hi All, I am on version 2.17 and am splitting a json document and passing bits of json to a processor. If the processing bean returns null, I want to keep iterating. If the processing bean returns a Widget, I would like to stop iterating and have the old exchange contain the Widget. I believe I

Re: HELP Camel Splitter Question - thanks in advance

2016-06-13 Thread souciance
If you reply to this email, your message will be added to the discussion > below: > > http://camel.465427.n5.nabble.com/HELP-Camel-Splitter-Question-thanks-in-advance-tp5783810p5783984.html > To start a new topic under Camel - Users, email > ml-node+s465427n465428...@n5.nabble.com > T

Re: HELP Camel Splitter Question - thanks in advance

2016-06-13 Thread Gary
that worked. thanks again really appreciate that. learn something new everyday. I'm loving Camel. -- View this message in context: http://camel.465427.n5.nabble.com/HELP-Camel-Splitter-Question-thanks-in-advance-tp5783810p5783984.html Sent from the Camel - Users mailing list archi

Re: HELP Camel Splitter Question - thanks in advance

2016-06-13 Thread Gary
thanks I do appreciate your help. I will try this -- View this message in context: http://camel.465427.n5.nabble.com/HELP-Camel-Splitter-Question-thanks-in-advance-tp5783810p5783982.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: HELP Camel Splitter Question - thanks in advance

2016-06-10 Thread souciance
14209,31.834307 > > > > -- > If you reply to this email, your message will be added to the discussion > below: > > http://camel.465427.n5.nabble.com/HELP-Camel-Splitter-Question-thanks-in-advance-tp5783810p5783897.html > To start a new top

Re: HELP Camel Splitter Question - thanks in advance

2016-06-10 Thread Gary
7399,129.75864,200.62459,-2.130173,111.07822,0.23443224,0.46886447,0.7057387,0.5860806,0.35286936,0.41147742,0.35286936,1.058608,1.0,0.8815629,0.41147742,0.52869356,1.7578125,-8.32,-8.14209,31.834307 -- View this message in context: http://camel.465427.n5.nabble.com/HELP-Camel-Splitter-Question

Re: HELP Camel Splitter Question - thanks in advance

2016-06-10 Thread Gary
6-06-02-12-37-39.csv -- View this message in context: http://camel.465427.n5.nabble.com/HELP-Camel-Splitter-Question-thanks-in-advance-tp5783810p5783896.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: HELP Camel Splitter Question - thanks in advance

2016-06-10 Thread Gary
{body} -- View this message in context: http://camel.465427.n5.nabble.com/HELP-Camel-Splitter-Question-thanks-in-advance-tp5783810p5783895.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: HELP Camel Splitter Question - thanks in advance

2016-06-10 Thread Gary
thank you ! would you know how to convert body in Spring XML ? I'm trying to find some reference ... thanks again -- View this message in context: http://camel.465427.n5.nabble.com/HELP-Camel-Splitter-Question-thanks-in-advance-tp5783810p5783893.html Sent from the Camel - Users mailing

Re: HELP Camel Splitter Question - thanks in advance

2016-06-09 Thread souciance
6:15,939 | INFO | 022/fromvan/guid | route1 > | ? ? | 198 - > org.apache.camel.camel-core - 2.15.1.redhat-620133 | Split line -rwxrwxrwx > 1 0 0 10 Jun 09 22:16 splitterTestFile.txt ( this is > my output ???) > >

HELP Camel Splitter Question - thanks in advance

2016-06-09 Thread Mills, Gary (GE Digital)
Hello, Can you tell me why this isn't working and it's real strange. If I use the ${body} * I cannot use tokenize with it ( I don't know if they work together or not ), it throws a schema impl exception. But it produces a different result which is the same as the input file as if it is not split

Re: AW: Camel Custom Splitter Question

2014-08-21 Thread mattmadhavan
advance! Matt'M - Thanks Matt G. Madhavan -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Custom-Splitter-Question-tp5755453p5755501.html Sent from the Camel - Users mailing list archive at Nabble.com.

AW: Camel Custom Splitter Question

2014-08-20 Thread jhm
s strategyRef option on the splitter, but I havent it found as fast as this ;) Jan > -Ursprüngliche Nachricht- > Von: mattmadhavan [mailto:mattmadha...@yahoo.com] > Gesendet: Mittwoch, 20. August 2014 23:52 > An: users@camel.apache.org > Betreff: Camel Custom Splitter Quest

Camel Custom Splitter Question

2014-08-20 Thread mattmadhavan
: http://camel.465427.n5.nabble.com/Camel-Custom-Splitter-Question-tp5755453.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Splitter Question - ArrayList

2012-05-29 Thread Christopher Love
Guys Thanks for the recommendations. I took a step back and did a split on a string, rather than an object. Smaller payload in the activemq queues. Claus An ArrayList is inbound to the split. I should not have listed it in the split. Should split() just work, or do I need to list the object t

Re: Splitter Question - ArrayList

2012-05-29 Thread Henryk Konsek
> I am not getting anything after the split.  Ideas?  What debug logging > should I tweak? Could you send us output from logger near split(body(LsaResponse.class)) ? It's hard to tell what's wrong with your routing, reasoning from the snippet we cannot execute locally and seeing no log :) . -- H

Re: Splitter Question - ArrayList

2012-05-29 Thread Claus Ibsen
And are you sure LsaResponse is a Colection / Iteratable so it can be used for splitting? See the splitter docs http://camel.apache.org/splitter And use tracer to see what goes on http://camel.apache.org/tracer Or write an unit test and debug the code. On Tue, May 29, 2012 at 5:29 AM, Christop

Splitter Question - ArrayList

2012-05-28 Thread Christopher Love
Hi all I am trying to split an ArrayList and send it to a queue. I am not getting anything after the split. Ideas? What debug logging should I tweak? from("seda:ReloadLSADocs") .to("clearHeader") .validate(header("IGIVE_DOIT").isNotNull()) .routeId("reload-lsa-docs") .to("bean:lsaRedisService?m

Re: Splitter Question

2010-10-07 Thread Claus Ibsen
; bean would take CustomPOJO as the input > parameter -- correct? > > > -Original Message- > From: Russell, Brian [mailto:bruss...@medplus.com] > Sent: Wednesday, October 06, 2010 3:51 PM > To: users@camel.apache.org > Subject: RE: Splitter Question > > Thanks Clau

RE: Splitter Question

2010-10-06 Thread Russell, Brian
Also, I assume the "map_object" bean would take CustomPOJO as the input parameter -- correct? -Original Message- From: Russell, Brian [mailto:bruss...@medplus.com] Sent: Wednesday, October 06, 2010 3:51 PM To: users@camel.apache.org Subject: RE: Splitter Question Thanks

RE: Splitter Question

2010-10-06 Thread Russell, Brian
...@gmail.com] Sent: Wednesday, October 06, 2010 2:56 PM To: users@camel.apache.org Subject: Re: Splitter Question On Wed, Oct 6, 2010 at 8:23 PM, Russell, Brian wrote: > In addition to testing my clustered quartz configuration, I have the > following question... > > I have a bean

Re: Splitter Question

2010-10-06 Thread Claus Ibsen
On Wed, Oct 6, 2010 at 8:23 PM, Russell, Brian wrote: > In addition to testing my clustered quartz configuration, I have the > following question... > > I have a bean returning a java.util.List  (see get_list > below).  I then try to use the body to route each > CustomPOJO.  See following... > >

Splitter Question

2010-10-06 Thread Russell, Brian
In addition to testing my clustered quartz configuration, I have the following question... I have a bean returning a java.util.List (see get_list below). I then try to use the body to route each CustomPOJO. See following... body