In HTTP you can specify in a request that your client can accept specific content in responses using the accept header, with values such as application/xml. The content type specification allows you to include parameters in the content type, such as charset=utf-8, indicating that you can accept content with a specified character set.

There is also the accept-charset header, which specifies the character encodings which are accepted by the client.

If both headers are specified and the accept header contains content types with the charset parameter, which should be considered the superior header by the server?

e.g.:

Accept: application/xml; q=1,
        text/plain; charset=ISO-8859-1; q=0.8
Accept-Charset: UTF-8

I've sent a few example requests to various servers using Fiddler to test how they respond:

Examples

W3

Request

GET http://www.w3.org/ HTTP/1.1
Host: www.w3.org
Accept: text/html;charset=UTF-8
Accept-Charset: ISO-8859-1

Response

Content-Type: text/html; charset=utf-8

Google

Request

GET http://www.google.co.uk/ HTTP/1.1
Host: www.google.co.uk
Accept: text/html;charset=UTF-8
Accept-Charset: ISO-8859-1

Response

Content-Type: text/html; charset=ISO-8859-1

StackOverflow

Request

GET http://stackoverflow.com/ HTTP/1.1
Host: stackoverflow.com
Accept: text/html;charset=UTF-8
Accept-Charset: ISO-8859-1

Response

Content-Type: text/html; charset=utf-8

Microsoft

Request

GET http://www.microsoft.com/ HTTP/1.1
Host: www.microsoft.com
Accept: text/html;charset=UTF-8
Accept-Charset: ISO-8859-1

Response

Content-Type: text/html

There doesn't seem to be any consensus around what the expected behaviour is. I am trying to look surprised.

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted
+100

Altough you can set media type in Accept header, the charset parameter definition for that media type is not defined anywhere in RFC 2616 (but it is not forbidden, though).

Therefore if you are going to implement a HTTP 1.1 compliant server, you shall first look for Accept-charset header, and then search for your own parameters at Accept header.

link|improve this answer
To clarify: you'd expect a server to give priority to the Accept-Charset header. If the header isn't present, then look for charset parameters in content types? – Programming Hero Sep 10 '11 at 6:20
1  
Considering the RFC 2616 spec, that's the way it should work. But that solely depends on the way the developer that implemented the RFC interpreted it. If they do give priority to accept tag instead of accept-charset, they may be considering that accept tag just have priority (since is more specielized) over accept-charset (which is more generic, but is the standard). The final thought is, if you are making the request, make it consistent. If you are developing an HTTP server, build it in a way the RFC standard have more priority over your interpretation. This way you can’t be wrong. – Paulo Sep 13 '11 at 14:16
feedback

Read RFC 2616 Section 14.1 and 14.2. The Accept header does not allow you to specify a charset. You have to use the Accept-Charset header instead.

link|improve this answer
1  
RFC 2616 indicates it's acceptable for content-types to contain parameters. As per RFC 2046, charset is a specific parameter: tools.ietf.org/html/rfc2046#section-4.1.2 I don't see anything which specifically forbids this parameter in Accept or clarifies how to handle those parameters when they are used with Accept-Charset – Programming Hero Sep 5 '11 at 17:13
The Accept header does not use the Content-Type specification, so it is not correct to include Content-Type parameters in the Accept header. Please read the RFC syntax more carefully. The Accept header has its own kind of parameters (primarily for assigning priorities), and charset is not one of them. The Accept-Charset header is the official way to specify acceptable charsets. – Remy Lebeau Sep 5 '11 at 18:13
The RFC reads: "The media-range MAY include media type parameters that are applicable to that range." followed by "Each media-range MAY be followed by one or more accept-params, beginning with the "q" parameter for indicating a relative quality factor." It's quite clear that media-type parameters are acceptable. – Programming Hero Sep 6 '11 at 6:29
2  
The use of a charset parameter in the Accept header is not defined anywhere, though. The Accept-Charset header is defined for that purpose. That is what servers are going to be looking for. – Remy Lebeau Sep 7 '11 at 1:36
charset is valid. See RFC 2616 section 3.7, which specifically delegates to IANA and specifically states "The presence or absence of a parameter might be significant to the processing of a media-type, depending on its definition within the media type registry." – Tom Howard Mar 16 at 0:46
feedback

I don't think it matters. The client is doing something dumb; there doesn't need to be interoperability for that :-)

link|improve this answer
This might be the smart answer, but what happened to being liberal in what we accept? Specifically, if a client wants to indicate that they'd like a text representation in ISO encoding and XML in Unicode encoding, the charset parameter is the only way to be that explicit. – Programming Hero Sep 6 '11 at 6:30
Yes, I didn't say otherwise. The client is doing something dumb when sending conflicting information. – Julian Reschke Sep 9 '11 at 8:59
1  
Whether they're conflicting surely is down to how you choose to interpret the values? You could, for example, say that the charset parameter is superior to the Accept-Charset header. – Programming Hero Sep 9 '11 at 14:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.