Hello.
I would like to estimate the effort and possibility to use camel-netty to
proxy TCP streams from one listening port to another. My route should look
like this:
from("netty:tcp://0.0.0.0:3333?decoders=#decoders&sync=true")
.to("netty:tcp://foo:4444?encoders=#myencoders&sync=true")The kind of data I want to pass is audio/video streaming.I would like to use camel because later on I would like to attach headers to data later on. I will probably have to write some decoder that read the stream into a fixed size buffer (periodically). But will I be able to have bidirectional communication between both endpoints? what about the exchange pattern? And generally is it a good idea to use camel for that ? Thanks. -- View this message in context: http://old.nabble.com/Should-I-use-camel%2Bnetty-for-TCP-streaming-proxy--tp28545758p28545758.html Sent from the Camel - Users mailing list archive at Nabble.com.
