On Tue, 8 Mar 2005 16:40:36 -0500, Steve Pruitt <[EMAIL PROTECTED]> wrote:
> I retrieve the data from the database, serialize to xml, and send back as a > webservice response. I set my response content type to: > > text/xml; charset=utf-8 Setting the content-type just tells the client (Flex) that the data is in utf-8. But you have to actually make the data utf-8 before sending it across. In Java it's fairly simple -- just pass the charset parameter to the conversion functions. If you're doing response.write() or something, you should set the charset (or "character encoding") in the response object to utf-8 (I'm sorry I have forgotten the syntax, and you know better). Manish

