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
But, I still had the problem. Starting at the
Java ends sounds like a good start.
Thanks.
-S
From: Jonathan Bezuidenhout [mailto:[EMAIL PROTECTED]
Sent: Monday, March 07, 2005 12:20 PM
To: [email protected]
Subject: Re: [flexcoders] language support
We had exactly the same symptom (ironicallywith the same character!).
We get our data from a RemoteObject reading the data in on the server
as XML, and sending it to the client.
The problem turned out to be in our Java code where we were actually
readingin the data. As Matt mentioned, look for any kind of UTF-8
conversionyou can do. Ours was done in a slightly wrong way. After
we fixed it, everything worked fine. So my guess would be an encoding
problem. Not knowing what you have on your side, of course this is
just a guess.
Jonathan

