Re: thinking in the difference between camel and servicemix

2011-06-05 Thread Claus Ibsen
Yeah thats one way of seeing the world. There is a FAQ http://camel.apache.org/how-does-camel-compare-to-servicemix.html http://camel.apache.org/how-does-camel-compare-to-servicemix-eip.html Also stackoverflow have some QA about Camel and SMX. For example: http://stackoverflow.com/questions/2705

Re: Camel with Netty, strange requirement

2011-06-05 Thread Sachin
Thanks for your response,it's great to hear from Ibsen directly :) . I am already doing it as below. SocketAddress remoteAddress =exchange.getIn().getHeader(NettyConstants.NETTY_REMOTE_ADDRESS, SocketAddress.class); ChannelHandlerContext channelHandlerContext =(ChannelHandlerContext) exchange.get

Re: Camel with Netty, strange requirement

2011-06-05 Thread Claus Ibsen
On Mon, Jun 6, 2011 at 8:03 AM, Sachin wrote: > Thanks for your response,it's great to hear from Ibsen directly :) . > I am already doing it as below. > > SocketAddress remoteAddress > =exchange.getIn().getHeader(NettyConstants.NETTY_REMOTE_ADDRESS, > SocketAddress.class); > ChannelHandlerContext

Re: Camel with Netty, strange requirement

2011-06-05 Thread Claus Ibsen
Hi And check the source code of camel-netty. Maybe you can spot an improvement to fit your need. But I think the answer is in the Netty community/documentation. On Mon, Jun 6, 2011 at 8:09 AM, Claus Ibsen wrote: > On Mon, Jun 6, 2011 at 8:03 AM, Sachin wrote: >> Thanks for your response,it's g