According to this Apache documentation "Some HTTP headers (such as the set-cookie header) have values that can be decomposed into multiple elements". I can't make much sense of this. For example, when I use the getElements() method on a "Set-Cookie" Header object that has a value of:
SESSIONID=abcdefg01234; Path=/; Expires=Wed, 09 Jun 2021 10:18:14 GMT
I get back an array of two HeaderElements, one header element is:
SESSIONID=abcdefg01234; Path=/; Expires=Wed
and the other one is:
09 Jun 2021 10:18:14 GMT
How useful is this? On these HeaderElements I can invoke methods like getName(), getValue(), getParameterByName() but what will be the value or parameters of 09 Jun 2021 10:18:14 GMT ??? Also why is the valid parameter of the header Expires=Wed, 09 Jun 2021 10:18:14 GMT split into two? This seems wrong. Yet, when I do call header.getElements() on the header:
Set-Cookie: SESSIONID=abcdefg01234; Path=/; Expires=Wed, 09 Jun 2021 10:18:14 GMT
It becomes split into two header elements, as these are supposed to be comma separated... Still, I fail to find any better explanation of the concept of a header element than is mentioned here. What, then, are these header elements? Could anyone explain, please?
Content-Typeheader. This commonly appears asContent-Type: text/html;charset=iso-8859-1. Likewise, theAcceptheader can assign a quality to each acceptable content type:Accept: text/plain; q=0.5, text/html, text/x-dvi; q=0.8, text/x-c(the last example comes from RFC-2616). – Barend Sep 30 '11 at 15:49