I use
ivComponentDOM =
dw.getDocumentDOM(MMNotes.filePathToLocalURL(tapes tryScripts.getUserConfigFo
lderPath() + "\\componentFile.xml"))
to read a xml
however when i get the source of the xml using
ivComponentDOM.documentElement.outerHTML

all the attribute in the XML are converted into lowercase

eg:

<component>
<object objName="test"/>
</component>

become

<component>
<object objname="test"/>
</component>

Is there any otherway i can use to read the XML with the original case?
Thanks a lot!!!