Hi!
Since is made aware of the fact that HTTP headers are case-insensive according to the RFC, i wonder how to handle this problem with Servlets. There is a #getHeader(String) method to obtain a header but it turned out that this method treats the header fields case sensive which is quite... annoying?
Is there a proper way to obtain the contents of a header field in a case insensive manner? Or do i have to iterate over all header fields provided by the client to find the header is was looking for?
Have a great weekend!