By the way, are you sure the 192.168.100.109 is a valid interface for
the local machine ?
Regards
JB
On 11/05/2014 10:49 AM, Morgan Hautman wrote:
from("mina:tcp://192.168.100.109:1212?sync=true&textline=true").routeId("TCP_CONNECTION").setExchangePattern(org.apache.camel.ExchangePattern.InOnl
Can you try with mina2 instead of mina ?
mina2:tcp://0.0.0.0:1212?sync=true&textline=true&textlineDelimiter=AUTO
Try to put a bean or processor after the mina endpoint to see what you
receive (before going to a JMS queue).
You can find details here: http://camel.apache.org/mina2.html
Regards
from("mina:tcp://192.168.100.109:1212?sync=true&textline=true").routeId("TCP_CONNECTION").setExchangePattern(org.apache.camel.ExchangePattern.InOnly).id("ExchangePattern").to("log:cLog_1?level=INFO").id("cJMSConnectionFactory1"
+ ":queue:netty")).id("jms");
javax.jms.ConnectionFactory jmsConnectio
Can you share the camel route with us?
I didn’t find anything wrong by going through the log you pasted.
--
Willem Jiang
Red Hat, Inc.
Web: http://www.redhat.com
Blog: http://willemjiang.blogspot.com (English)
http://jnn.iteye.com (Chinese)
Twitter: willemjiang
Weibo: 姜宁willem
On November
Hello all,
I'm trying to implement a endpoint who can read an NMEA 0183 buffer using
TCP.
I already tried to implement it using a codec (
https://code.google.com/p/cellengine/source/browse/trunk/engine_java/002_Engine_Server/mina/com/net/minaimpl/server/telnet/TelnetCodec.java?r=1198)
but it requi