Is it possible for a java servlet to extract the full text of a request header of response header rather than doing the getHeader() method individually? Alternatively, would it be possible to get the full size in bytes of these headers?
Reason I'm asking this is because I want to track the data usage between the servlet and device sending the request, and due to the large amount of requests that will be send from different devices I want to be able to get an accurate representation of how many bytes were used up just by the headers.
Thanks in advance.