For the following I'm using the REST API as discussed here: http://docs.amazonwebservices.com/AmazonSimpleDB/latest/DeveloperGuide/SDB_API_GetAttributes.html

When getting the rows of a table (attributes of a domain) I can sniff the HTTP traffic and see that the response contains unicode characters for some of the table cells (as it should.) However, I can also see that the response content type is "text/xml" and that no charset is specified. Because of RFC2046, this means that a default charset of "us-ascii" should be used. This results in the parser I'm using not being able to read the unicode characters properly.

To me it seems like this is a bug in Amazon. Is this the case? Is there a workaround, such as headers to send to Amazon (I already tried Accept-Charset and it didn't work.)

Thanks for any help!

link|improve this question
1  
I think your reading of RFC2046 is correct and if Amazon is returning UTF-8 without specifying that in the character set, it is not following the standard as such. What do the Amazon docs say? It may just be that they have decided their default is UTF-8 (which makes a lot of sense). Or perhaps they decided they do not ever return anything but UTF-8 and therefore do not even bother to specify it in the content type as it is, well, their default/only encoding? – Marjan Venema Aug 5 '11 at 19:38
Amazon says the standard is just a suggestion so they choose not to follow it. :) – Mat DeLong Aug 8 '11 at 14:46
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.