↧
Answer by Divyans Mahansaria for Protobuf message exchange between plain TCP...
I am able to resolve this issue. I am posting the solution below. Server Code public void channelRead(ChannelHandlerContext ctx, Object msg) { ByteBuf buf = (ByteBuf) msg; byte[] req = new...
View ArticleProtobuf message exchange between plain TCP client & Netty Server using Java
I am trying to create a TCP socket connection between a plain TCP client and Netty Server using Protobuf message exchange format in Java and it does not work. It works when I use Netty Client (instead...
View Article