Dear all, I am trying to write a route builder so that data published on a vertx event bus with a given name would then be sent to a tcp socket, while data received from that tcp socket would go to another event bus.
The following route doesn't work because data is sent but never received: from ("vertx:eventBus1").to ("netty:tcp//myServer:80").to("vertx:eventBus2") Can you please help me? Best Edmondo