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!