Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Cascades Development

Reply
Contributor
stephenalistoun
Posts: 17
Registered: ‎07-16-2012
My Carrier: None

QML Javascript responseXML

Hi all,

 

How do I read XML Nodes in QML Javascript?

 

if(request.readyState === XMLHttpRequest.DONE) {
      if (request.status === 200) {
                var root = request.responseXML.documentElement;                   
      }
      else {
            // This is very handy for finding out why your web service won't talk to you
            console.log("Status: " + request.status + ", Status Text: " + request.statusText);
       }
}

 

For example from the following XML Tree:

<Node>
 <ReturnData>
 <login>
 <DataElement>
 <successful>1 </successful>

</DataElement>

 </login>

</ReturnData>

</Node>

 

Please use plain text.