Skip to content Skip to sidebar Skip to footer

Xml Parsing Failure On Android But Works On Iphone

Appcelerator Q&A Link: XML Parsing failure on Android but works on iPhone I am preparing a general application which works both for iPhone and Android phones with same code for

Solution 1:

Check the link:

http://developer.appcelerator.com/question/128341/xml-parsing-failure-on-android-but-works-on-iphone#comment-104281

For parsing XML using:

var xml = Ti.XML.parseString(this.responseXML.toString());

xyz(languageCode, version, xml);

"this.responseXML.documentElement". It has some problems on Android (don't know is it reported or not). The workaround it to use "Ti.XML.parseString" method to re-parse XML:.

Post a Comment for "Xml Parsing Failure On Android But Works On Iphone"