up vote 3 down vote favorite
1
share [g+] share [fb]

I developed a web app that responds with data in the format as specified by the client in the HTTP Accept Headers. Everything worked fine while using Firefox, but when I wanted to check my CSS / HTML on Chrome and IE, both of them wanted to download the index page, as if it's an unknown content type.

After some research I found this article, which states that IE sends out a lot of crud in it's HTTP Accept headers, amongst others a list of image/* content types right at the start.

This caused my web app to try to send the index page as an image/jpeg.

So how do I know when to ignore and when to use the Accept Headers?

link|improve this question

What content-type does your application choose if you try to access the page with IE? Even if IEs Accept header may be broken, it should still match "text/html". – trendels Sep 9 '09 at 12:03
It matches against image/jpeg, as the app can serve images as well. It's in the question :P – Jrgns Sep 9 '09 at 13:57
OK, I assumed that the index page would only exist as HTML. – trendels Sep 9 '09 at 15:54
feedback

2 Answers

up vote 1 down vote accepted

The best thing to do is likely to apply your own server-side weight if there are types with the same weight in the accept header. Thus if you have text/html and image/* both with the same q-value (or none) you could give text/html preference by default.

link|improve this answer
I wanted to implement this now, and realised (again) that the problem is that IE doesn't send text/html as a MIME type, just a lot of cruft and /. So even if I weigh text/html more than image/*, it will still pick image/*, as there is not text/html. – Jrgns May 18 '10 at 20:26
What exactly does your IE send? – Jan Algermissen May 19 '10 at 6:27
Check this link. I also mention it in the question: gethifi.com/blog/browser-rest-http-accept-headers – Jrgns May 31 '10 at 13:55
feedback

I would simply keep a blacklist of programs that send obviously broken Accept headers, like IE and Safari (according to the article). If the User-Agent header matches the blacklist, ignore the Accept header, otherwise don't.

The problem with IEs Accept header is not that it puts image/* at the start, but that it doesn't indicate that it prefers HTML or XHTML over images (via the q parameter). AFAIK, the order of the elements in the Accept header is not significant.

link|improve this answer
Whitelist: Yea, true, the only problem is that User-Agent headers are sometimes untrustworthy, so I try to stay away from them. Order of elements: The parser I use assumes that if no preference is given, the first takes precedence. – Jrgns Sep 9 '09 at 14:00
feedback

Your Answer

 
or
required, but never shown

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