Re: reactive streaming with camel and vertx

2019-12-12 Thread Bing Lu
if i have a verticle on one jvm how would i use the camel vertx component on another jvm consuming from the verticle on the other jvm? thanks Sent from Yahoo Mail on Android On Wed, Dec 11, 2019 at 11:39 AM, Bing Lu wrote: also if there is a vertx app deployed on another machine, i can st

Re: reactive streaming with camel and vertx

2019-12-11 Thread Bing Lu
also if there is a vertx app deployed on another machine, i can still use the from(vertx:channelname)... right? given the host and port of the other machine Sent from Yahoo Mail on Android On Wed, Dec 11, 2019 at 7:33 AM, Bing Lu wrote: i am running it as a spring boot app Sent from Yaho

Re: reactive streaming with camel and vertx

2019-12-11 Thread Bing Lu
i am running it as a spring boot app Sent from Yahoo Mail on Android On Tue, Dec 10, 2019 at 9:09 PM, Bing Lu wrote: Is vertx component a replacement of vertx camel bridge? when i did the following I got the following exception from("vertx:testchannel?host=127.0.0.1&port=").to("log:foo

Re: reactive streaming with camel and vertx

2019-12-10 Thread Claus Ibsen
Hi Yeah those options should be there, how are you starting and running Camel ? On Wed, Dec 11, 2019 at 3:09 AM Bing Lu wrote: > > Is vertx component a replacement of vertx camel bridge? > when i did the following I got the following exception > from("vertx:testchannel?host=127.0.0.1&port="

Re: reactive streaming with camel and vertx

2019-12-10 Thread Bing Lu
Is vertx component a replacement of vertx camel bridge? when i did the following I got the following exception from("vertx:testchannel?host=127.0.0.1&port=").to("log:foo");  Caused by: org.apache.camel.ResolveEndpointFailedException: Failed to resolve endpoint: vertx://address?host=127.0.0.1

reactive streaming with camel and vertx

2019-12-10 Thread Bing Lu
hi, there seems to be two way using reactive streaming with camel with vertx 1. using vertx camel bridge2. using vertx camel component what are the difference between the two and are there any examples of usage? thanks