I'm having a difficult time getting some parsing code working an an app I've ported over to vdf15.1 - debugger says I'm getting a handle for the root level of xml but when I try to find a node by name to a handle it's not finding it even though it's there. Here is a more specific illustration.

*/ CODE FOLLOWS */
get Create U_cXMLDomDocument to hoXML
if (hoXML <> 0) begin
get LoadXML of hoXML sXML to bOk
if (bOK) begin
get DocumentElement of hoXML to hoXMLRoot
if (hoXMLRoot <> 0) begin
Get FindNode of hoXMLRoot "ZipValues" to hXMLCleanup
if (hXMLCleanup <> 0) begin

Debugger says hXMLCleanup is a 0, so I can't get the Attribute Values. Below is the actual XML the parsing code is dealing with.

<ZipCodeReturn zmlns="http://www.jasperengines.com/AddressVerification"><ZipValues Error="0" Longitude="=86.9378" Latitude="38.41131" Precision="1" Result="Z1" /></ZipCodeReturn>

It worked fine in VDF 12.0. Would could be going on here?

Thanks,
John