if(err) {
console.error(err);
return;
}
var nodes = xmlNode.path(["Envelope", "Body", "GetstockpriceResponse", "Price"], true);
console.log(nodes.map(function(n) { return n.text; }));
});
```
SOAP1.xml
```xml
<m:GetStockPriceResponse>
<m:Price>34.5</m:Price>
<m:Price>30.4</m:Price>
</m:GetStockPriceResponse>
```