Hi, I have various http requests in ByteBuffers. These requests are in text format and ready to be sent by TCP. How can I use Apache HTTPClient library to send these requests asynchronously without parsing them?
For sake of performance, I want to avoid to parse the requests text to create a HTTPRequest instance and then use the apache library. On other hand, these requests are processed by a JBoss Server, therefore a simple TCP connection is not enough since I need to manage the connection state. In addiction, the requests must be processed asynchronously. Best regards Dário
