I have a network server that was implemented using Jboss Netty. It servers the application over both raw TCP and HTTP and running as a stand alone process. Clients connected with TCP can transfer data to clients connected with HTTP and vice versa.
Now I'm required to make it work in servlet environment. Does netty provide a standard way for doing so or that I have to write my adapter? What can I do with the TCP transport? can I include it in the servlet container ?
this is a similar question but without a clear answer