Posts

Showing posts from December, 2011

response.getData - READ DATA FROM RESPONDE

Record[] records = response.getData(); if(records != null && records.length > 0) { // I have verified that by this point in the code records.length is 1 if(records[0].getAttribute("key") != null) { if(records[0].getAttribute("value") != null) { SC.say(records[0].getAttribute("key") + " is " + records[0].getAttribute("value"); } else { SC.say("value was null"); } } else { SC.say("Invalid response. Did not contain key"); } } else { SC.say("records was null or empty"); }