I am using Appcelerator Titanium and the code below works fine on iPhone but not on Android and I am unable to find out why. Can anyone help?

It fails with the following error:

TypeError: Cannot read property "DocumentElement" from null

BEGIN CODE

var xhr = Titanium.Network.createHTTPClient();

xhr.onload = function() {
   var xmlDoc = Ti.XML.parseString(this.responseText).documentElement;
   var xlinestatus = xmlDoc.getElementsByTagName('LineStatus');

   for (i = 0; i < xlinestatus.length; i++) {
     var theItem = xlinestatus.item(i);
     var newname = theItem.getElementsByTagName("Line").item(0).getAttribute("Name");
     var desc = theItem.getElementsByTagName("Status").item(0).getAttribute("Description");
     var active = theItem.getElementsByTagName("Status").item(0).getAttribute("IsActive");
     Ti.API.info(" Line: " + newname + " Status: " + desc + ", Active: " + active);
   }

};

// open the client
xhr.open('GET', 'http://cloud.tfl.gov.uk/TrackerNet/LineStatus');

// send the data
xhr.send({});

END CODE
link|improve this question

you will have to provide more information whats the logcat output ? is there a exception whats the value of this.responseText? – sherif Mar 20 '11 at 21:59
I have the similar problem please check the question: stackoverflow.com/questions/8163385/… – Mobihunterz Nov 17 '11 at 7:25
feedback

1 Answer

up vote 0 down vote accepted

This is what I did and it worked

please change the line Ti.XML.parseString(this.responseText).documentElement;

to

this.responseXML.documentElement and it should work. Here is the output of it. I haven't tested it on OS X but it should work.

[INFO] [157,5791] Line: Bakerloo Status: Service Closed, Active: true
[INFO] [8,5799] Line: Central Status: Service Closed, Active: true
[INFO] [27,5826] Line: Circle Status: Service Closed, Active: true
[INFO] [7,5833] Line: District Status: Service Closed, Active: true
[INFO] [16,5849] Line: Hammersmith and City Status: Service Closed, Active: true
[INFO] [11,5860] Line: Jubilee Status: Service Closed, Active: true
[INFO] [12,5872] Line: Metropolitan Status: Service Closed, Active: true
[INFO] [12,5884] Line: Northern Status: Service Closed, Active: true
[INFO] [14,5898] Line: Piccadilly Status: Service Closed, Active: true
[INFO] [14,5912] Line: Victoria Status: Service Closed, Active: true
[INFO] [14,5926] Line: Waterloo and City Status: Service Closed, Active: true
link|improve this answer
I'm not familiar with the error handling in this situation but did you mean to quote inError ? or is it a variable? If not, I'm not sure what this will reveal? – Basic Mar 21 '11 at 0:37
Check the answer above that should work. Will have to find why your call works on iPhone and fails on android – allthenutsandbolts Mar 21 '11 at 1:26
I've edited your answer to correctly indicate code snippets. For future posts, please be aware you can use backticks (`) or indentation to achieve this. Thanks for your efforts on SO and welcome :) – Basic Mar 21 '11 at 2:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.