{ "id": "60867", "key": "TIMOB-235", "fields": { "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false }, "project": { "id": "10153", "key": "TIMOB", "name": "Titanium SDK/CLI", "projectCategory": { "id": "10100", "description": "Titanium and related SDKs used in application development", "name": "Client" } }, "fixVersions": [], "resolution": { "id": "7", "description": "", "name": "Invalid" }, "resolutiondate": "2011-04-15T02:25:55.000+0000", "created": "2011-04-15T02:25:55.000+0000", "priority": { "name": "Medium", "id": "3" }, "labels": [ "encoding", "iso-8859-1", "utf-8" ], "versions": [], "issuelinks": [], "assignee": { "name": "jhaynie", "key": "jhaynie", "displayName": "Jeff Haynie", "active": false, "timeZone": "America/Los_Angeles" }, "updated": "2017-03-09T21:10:29.000+0000", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "components": [ { "id": "10206", "name": "iOS", "description": "iOS Platform" } ], "description": "{html}
Please add the following lines to the NetworkModule.m
\n=> OLD
\n\n TRYENCODING(\"windows-1252\",12,NSWindowsCP1252StringEncoding);\n TRYENCODING(\"shift_jis\",9,NSShiftJISStringEncoding);\n TRYENCODING(\"utf-8\",5,NSUTF8StringEncoding);
\n
\n=> NEW
\n\n TRYENCODING(\"utf-8\",4,NSUTF8StringEncoding);\n TRYENCODING(\"iso-8859-1\",5,NSISOLatin1StringEncoding);
\n
\nThis will make it possible to got ISO-Encoded results from the\nHTTPClient....
\nI have it in my own form source compiled mobile-sdk and it works!\n:-) (without not)
Changes in codebase have mooted this since then.