Re: split tokenize based on condition

2012-10-21 Thread Claus Ibsen
On Sun, Oct 21, 2012 at 1:16 AM, maheshadepu maheshad...@gmail.com wrote: I have xml structure like this. metadata numberoforders2/numberoforders metadatatypeabc/metadatatype /metadata order order /order order /order /order My requirement is i have to validate number of order nodes

Re: Camel, websockets and Javascript

2012-10-21 Thread Sam (Stephen Samuel)
Another alternative would be to have the camel routes publish the data to some in memory data structure. Then your display/monitor system could read from this. The advantage here is that your monitoring system will survive refreshes. On 20 October 2012 09:43, Claus Ibsen claus.ib...@gmail.com

Re: Polling Consumer and a Producer

2012-10-21 Thread zuff
Hi Christian, From various examples I seen, most of the route looks like . camelContext xmlns=http://camel.apache.org/schema/spring; route from uri=direct:start/ aggregate strategyRef=aggregatorStrategy completionTimeout=3000 correlationExpression simpleheader.id/simple

Camel fail-over mechanism

2012-10-21 Thread projectnash
Hi, We have four instance of gemfire distributed cache running in different machines. Distributed cache contains trade messages. Apache camel running in one of the machine reads JMS topic and populates this distributed cache. At any cost we don't want to introduce out-of-sequence in

Failed to connect using Camel + RabbitMq Configuration

2012-10-21 Thread Syed
Hi, I am using the below specification, I am not able to establish connection with RabbitMQ using the below configuration. Set the VM arguments -Dqpid.dest_syntax=BURL -Dqpid.amqp.version=0-91 Camel - 2.10.0 RabbitMQ 2.8.5 QPID Client - 0.16 Camel Configuration -

Re: Camel fail-over mechanism

2012-10-21 Thread Willem jiang
camel-zookeeper component[1] can help you to do that. [1]http://camel.apache.org/zookeeper.html#Zookeeper-ZooKeeperenabledRoutepolicy. -- Willem Jiang Red Hat, Inc. FuseSource is now part of Red Hat Web: http://www.fusesource.com | http://www.redhat.com Blog: http://willemjiang.blogspot.com

Re: Failed to connect using Camel + RabbitMq Configuration

2012-10-21 Thread Willem jiang
Hi I'm not sure why the AMQ connection is closed from the RabbitMq side. From the Camel side log everything look good. -- Willem Jiang Red Hat, Inc. FuseSource is now part of Red Hat Web: http://www.fusesource.com | http://www.redhat.com Blog: http://willemjiang.blogspot.com

Re: How to use camel component properties outside camel context

2012-10-21 Thread Martin Stiborský
Hi Willem, thanks a lot, it works :) On Sat, Oct 20, 2012 at 5:59 AM, Willem jiang willem.ji...@gmail.com wrote: Hi, camel property component supports blueprint property out of box, and you can leverage the OSGi admin service to update the property for you. here is an example[1] that you