I am using nusoap.php with Amazon web services and have a problem with data that is according to one person encoded twice and to someone else:
All value n in the range
\xa0 through \xbf utf-8-encode
into {\xc2, n}, which is why you
see the extra character.
Anyway, the point is that the xml parser (regardless of the encoding option set) doesn't decode correctly.
I don't suppose there's any way round this? Can I tell it not to decode at all, and then do that manually in my own code, perhaps?
Andrew Ward