I have managed to trace the problem back to using json_encode in ProxyHandler.phpjson_encode (according to php.net) only works on utf8 strings.
to solve the problem, I have changed the code to run utf8_encode on the response before calling json_encode. I'd rather not create a patch as I think it would be more appropriate to create a JIRA ticket/task and check other areas of the code where this may be relevant. Ben LabPixies On Mon, Jan 19, 2009 at 1:55 PM, ben bonfil <[email protected]> wrote: > Hi All, > I'm having a problem handling a remote XML feed which contains German > special characters, and is encoded in ISO-8859-1. > The gadget makeRequest call returns only the part of the XML document that > is before the first appearance of a special character. > > I'm trying to trace out the problem, but I thought that someone may have > run into it already. > You can try http://sic.bonf.net/test_ger.xml as an example of such a feed. > > iGoogle handles the feed properly. > > I'd appreciate any help. > Thanks, > Ben > LabPixies >

