Thank you for your answer. I think I'm going to implement the logic
myself and feed a JMS queue. From there on, I can use Camel...
-David
On 09/30/2013 12:54 PM, Claus Ibsen wrote:
This is not currently possible out of the box in any of the camel-mina
or camel-netty components.
You can of course use Mina or Netty API and write the logic yourself.
There is some tickets in JIRA about having camel-mina supporting to
connect to a remote server and read input as a stream.
On Fri, Sep 27, 2013 at 10:28 AM, David Wicki <davidwicki...@gmail.com> wrote:
Hi all!
I'm new to this mailing list - and new to camel;-)
What I'm trying to do is, connecting to a tcp port (which is a telnet
service) and continuously read the character stream that is sent through the
connection. The stream basically "never" ends. The stream of characters can
be divided into separate messages. The separator is a keyword. So, the
stream could look like:
...<separator>message 5<separator>message6<separator>message7<separ...
What camel component could I use to connect to the remote service? The
component should read continuously and emit a message to the following
components every time a separator is seen.
Any suggestions?
-David