- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi @mustufam5967803 ,
why do not you iterate res variable immediately and use values?
for each (var row in res)
{
resultArray.push(row.@internalName);
}
Generally, you must convert output to the DOM object first in order to avoid error if I am not wrong:
res = winner.ExecuteQuery();
res = DOMDocument.fromXMLString(res);
and then to use
var result= res.getElementsByTagName("nms:delivery");
Regards,
Milan