I'm trying to do an XMLSearch on an XML object that has a name space. Here is an example of the data:
<StudentPersonal xmlns="http://www.sifinfo.org/infrastructure/2.x" RefId="140808190A00040F5007AA16589D65EB"> <LocalId>20602</LocalId> <Name Type="04"> <LastName>Serrano</LastName> <FirstName>Nadine</FirstName> <MiddleName>H</MiddleName> <FullName>Serrano, Nadine H</FullName> </Name> </StudentPersonal> If I try to do something as simple as this I get nothing. <cfset arrNodes = XmlSearch(temp,"StudentPersonal") /> But, if I remove the namespace piece (xmlns) form the root, then it returns just fine. Is there something that I am missing with this? This is OpenBD 2.0.2. Thanks! Ben -- online documentation: http://openbd.org/manual/ google+ hints/tips: https://plus.google.com/115990347459711259462 http://groups.google.com/group/openbd?hl=en
