This is a sample of what is being loaded into document:
<InventoryItem>
<id>4</id>
<inventoryId>11033</inventoryId>
<inventoryType>2</inventoryType>
<description>100BBL Skidded pop tank, c/w tone tone paint, thie</description>
<initialRate/>
<monthRate>300.00</monthRate>
<dayRate>15.00</dayRate>
</InventoryItem>
document.getFirstChild().getLastChild().nodeValue = "" document.getFirstChild().nodeName = InventoryItem document.getFirstChild().nodeName = InventoryItem
Should be something like this:
var rootNode = document.getFirstChild(); var child = rootNode.getFirstChild();
do { if (child.getNodeName().equals("description")) { break; } child = child.getNextSibling(); } while (child);
var value = child.getNodeValue();
I added:
do {
print(child.getNodeName());
print(child.getNodeValue());
description null
This means it iterates til it finds description. But the nodeValue seems to be wrong. I guess you must go on step down at the end:
var value = child.getFirstChild().getNodeValue();
Joerg
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
