Avatar

Level 10

John,

     Here is a way I did in the past..

    

     //Execute the webservice..

     xfa.connectionSet.SubmitWebService.execute(0);

     //Loading the XML to data DOM
     xfa.data.loadXML(STSTripInfo.Page1.Subform13.VAR_String.rawValue);
 

     //Going thru the loop to find out the tags that are needed using the nodes.length
     for(var i=0;i<xfa.data.nodes.length;i++){

          if(xfa.data.nodes.item(i).name.toUpperCase()=="MESSAGE"){

          //Do processing here

          }
     }

Hope this gives some idea..

Thanks

Srini