I have read several stackoverflow questions including
How to parse an HTTP Request in Java?
which directs to httpcomponents on apache which looks promising, but when you receive bytes asynchronously, you don't get the whole request always so I need something I can keep calling like
requestWriter.fillBuffer AND it looked like they had this but now it seems not to be there
AND then I would need a return value from that function to tell me the parsing of the http request is complete(complete meaning it has the bytes of the body stuffed somewhere based on the ContentLength header and everything else)
Anyone have an example of this on the web. I keep running into wanting to do this and searching but finally broke down and decided to ask.