An old problem has
cropped up.
When I parse:
<CheckedOut
status="true">
<CheckOutBy>spruitt</CheckOutBy>
<CheckOutDT>4/6/104</CheckOutDT>
</CheckedOut>
<CheckOutBy>spruitt</CheckOutBy>
<CheckOutDT>4/6/104</CheckOutDT>
</CheckedOut>
with:
var model= new
XML();
model.parseXML(result);
model.parseXML(result);
var myNode: XMLNode
= model.firstChild;
myNode isan
extraneous Text node. nodeType is 3.
myNode.nodeVaue
prints out as [object Object]
I tried
using:
model.ignoreWhite =
true;
without
success.
I don't want to manually search and strip these out. Is
there something I am missing?
-S

