I have an XML document and for the life of me I cannot get data by using XPath. I've tried every sample I could find and no luck. I'm trying to extract the email address. Any thoughts?
The XML:
<?xml version="1.0" encoding="UTF-8"?>
<Document xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:hl7-org:v3" xsi:schemaLocation="urn:hl7-org:v3 CDA.xsd">
    <typeId root="test1" extension="test2"/>
        <id root="test3" extension="test4"/>
            <code code="test5" codeSystem="test6" />
            <effectiveTime value="201509171214"/>
            <confidentialityCode code="N" codeSystem="test7" codeSystemName="test8" displayName="normal"/>
            <languageCode code="en"/>
            <recordTarget>
                <Role>
                    <id root="000000" extension="number1"/>
                    <id root="11111" extension="number2"/>
                    <addr>
                        <streetAddressLine>Street</streetAddressLine>
                        <postalCode>12345</postalCode>
                        <city>City</city>
                        <state>STATE</state>
                        <country>COUNTRY</country>
                    </addr>
                    <telecom value="number" use="HP"/>
                    <telecom value="number" use="MC"/>
                    <telecom value="email@email"/>
                    <person>
                        <name>
                            <family>family</family>
                            <given>given</given>
                            <prefix/>
                            <suffix/>
                        </name>
                        <administrativeGenderCode code="C" codeSystem="code" codeSystemName="code name" displayName="c"/>
                        <birthTime value="N/A"/>
                    </person>
                </Role>
            </recordTarget>
</Document>
To load it:
XmlDocument xmlDocument = new XmlDocument();
xmlDocument.LoadXml(STRING DATA FROM XML);
XPathNavigator foo = xmlDocument.CreateNavigator();
foo.MoveToFollowing(XPathNodeType.Element);
foo.Select("Document/recordTarget/Role");
I've also tried:
XmlNodeList xmlNodeList = xmlDocument.SelectNodes("/Document/recordTarget/Role");
But none of this works. Everything comes back empty. Any ideas? I can't seem to navigate past the root.
I've also tried adding the namespace manager in the selects, with no luck.
XmlNamespaceManager manager = new XmlNamespaceManager(xmlDocument.NameTable);
 
     
    