Re: UDP: Netty4 vs. Mina2

2018-09-15 Thread Alex Dettinger
Ron, I think there is room for improvement there. I opened https://issues.apache.org/jira/browse/CAMEL-12813 to setup a proposal in this respect. Would you like to have a try with a contribution https://github.com/apache/camel/blob/master/CONTRIBUTING.md ? Or, I could take over if you prefer. A

Re: UDP: Netty4 vs. Mina2

2018-09-14 Thread Ron Cecchini
Ok, last post. But I just fixed the route, sans "hack. And since I've seen lots of other people having problems with Netty, maybe this will help them. Instead of the transform().method(...) call, just do: .convertBodyTo(String.class, “UTF-8”) Problem solved. (Holy cow did this take me too

Re: UDP: Netty4 vs. Mina2

2018-09-14 Thread Ron Cecchini
Hi, Alex. Thank you you for your help. I had read all of those pages (amongst the million or so I scanned...) but your comment made it clearer as to what's possibly going on. As it turned out, earlier today I accidentally stumbled upon a hackish solution (think: Infinite Monkey Theorem) whic

Re: UDP: Netty4 vs. Mina2

2018-09-14 Thread Alex Dettinger
Hi Ron, By default, camel-netty4 includes default codecs based on java serialization. So, it could be that your payload is NOT Serializable. You would then need to configure codecs matching your case. You may find below links of interest: https://github.com/apache/camel/blob/master/components/cam

UDP: Netty4 vs. Mina2

2018-09-13 Thread Ron Cecchini
I'll try a shorter version of my question: Why does this work: .to("mina2:udp://localhost:4?sync=false") ... from("mina2:udp://localhost:4?sync=false") and this doesn't work: .to("netty4:udp://localhost:4?sync=false") ... from("netty4:udp://localhost:4?sync=false") In

Problem with UDP (Netty4 vs. Mina2) & RabbitMQ (UDP vs. HTTP?)

2018-09-12 Thread Ron Cecchini
Hi, there. I'm experiencing something weird here and I'm desperate for an answer. I realize this is a long message, but it's only because I'm verbose. It's a really straight forward setup, so I'm hoping it's just an obvious configuration issue... I have a simple Server and Client setup for s