Hi,
Methods getAttributeNode() and getAttribute() apply to Elements, so before you use them you need to get from the DOM itself to the Element you’re interested in.
For example,
var permitNumber = objNodeList.item(0).getAttribute(“caseNumber”);
By the way, the full MSXML SDK including documentation is available at
HTH!