Re: Importing xml nodes from one document to another. When i do this the imported xml node's attribute values all turn to nothing!?
Posted By:
Noel_Prevost
Posted On:
Thursday, April 18, 2002 01:23 PM
Can you give an example of the xml document you are doing a getElementsByTagName on. Is it the attribute being set to null or the actual value? Lumina<?
If you wanted to get Lumina, you would need to do a list.item(i).getFirstChild().getNodeValue().
an easier way to deal with the node value would be
Node temp = list.item(i);
temp.getFirstChild().getNodeValue();
Is this on line to what you are asking?