Hi guys,
How can I configure camel/netty4 as a tcp client that can send requests to remote server and accept responses from the server?
Camel documentation says I set the producer mode on using this syntax:
<to uri="netty4:tcp://192.168.2.101:7056" />
I created a route and added cMessagingEndpoint component with Netty4 as the camel endpoint. I don't see how to set the producer mode as per syntax above considering I'm only given a textbox to enter the URI, and nowhere to enter the to/from.
I could be using the wrong component though. Is there a better/alternative component that can act as a TCP client
with request-response capabilities?
From the searches I've done and advice from experts on this forum tSocketOutput doesn't receive responses.