And wanted to get hold of the "id" tag inside patient. To do this I found that the fast way was to use the method SelectSingleNode to and a xpath expression like the following:
"/ClinicalDocument/recordTarget/patientRole/id".
In the following way:
XmlDocument xml = new XmlDocument();
xml.LoadXml(cda.Xmlcda);
XmlNode node = xml.SelectSingleNode("/ClinicalDocument/recordTarget/patientRole/id");
But no element was found. I tried quite a lot of different stuff. But nothing worked.
Until finally I found this article: (link) (which I only skimmed(to be completely honest))which described the funny thing that even if the elements is not prefixed in the XML the base namespace is used anyway. So to enable me to Xpath my way to the patient Id tag I needed a XmlNameSpaceManager to handle the namespaces.
The working code looks like this:
XmlDocument xml = new XmlDocument();
xml.LoadXml(cda.Xmlcda);
XmlNamespaceManager nsmgr = new XmlNamespaceManager(xml.NameTable);
nsmgr.AddNamespace("cda", "urn:hl7-org:v3");
XmlNode node = xml.SelectSingleNode("/ClinicalDocument/recordTarget/patientRole/id", nsmgr);
The XML:
<!-- ?xml-stylesheet type="text/xsl" href="CDA.xsl"? -->
<!-- Readers should be aware of the evolving "Using SNOMED CT in HL7 Version 3" implementation guide, currently in a draft state. The guide, co-developed by HL7 and the College of American Pathologists, will be balloted by HL7 as an Informative Document. Recommendations in the final published guide should usurp patterns of SNOMED CT usage found in this sample instance. -->
<clinicaldocument xmlns="urn:hl7-org:v3" voc="urn:hl7-org:v3/voc"
xsi="http://www.w3.org/2001/XMLSchema-instance"
schemalocation="urn:hl7-org:v3 CDA.xsd">
<!-- ******************************************************** CDA Header ******************************************************** -->
<typeid root="2.16.840.1.113883.1.3" extension="POCD_HD000040">
<templateid root="2.16.840.1.113883.3.27.1776">
<id extension="c266" root="2.16.840.1.113883.19.4">
<code code="11488-4" codesystem="2.16.840.1.113883.6.1" codesystemname="LOINC" displayname="Consultation note">
<title>Good Health Clinic Consultation Note</title>
<effectivetime value="20000407">
<confidentialitycode code="N" codesystem="2.16.840.1.113883.5.25">
<languagecode code="en-US">
<setid extension="BB35" root="2.16.840.1.113883.19.7">
<versionnumber value="2">
<recordtarget>
<patientrole>
<id extension="12345" root="2.16.840.1.113883.19.5">
<patient>
<name>
</name></patient></id></patientrole></recordtarget></versionnumber></setid></languagecode></confidentialitycode></effectivetime></code>
32 comments:
xanax online effects of alprazolam 0.5mg - order xanax with mastercard
buy tramadol online tramadol dosage renal failure - buy tramadol online usa cheap
buy tramadol online buy tramadol rx online - tramadol 25mg tablets
xanax online xanax bars mg - xanax withdrawal long do symptoms last
tramadol 50 mg can you buy tramadol in the usa - tramadol high duration
xanax without prescription drug get off xanax - generic equivalent for xanax
xanax sale xanax pills with alcohol - drug interactions tramadol xanax
online xanax xanax side effects depression - xanax effects long term
xanax buy online no prescription xanax and alcohol wiki - xanax show up 5 panel drug test
soma carisoprodol buy carisoprodol online us - listaflex carisoprodol 350 mg para sirve
order tramadol overnight tramadol hcl 25 mg - tramadol for dogs sleepy
buy tramadol no prescription tramadol premature ejaculation - overdose of tramadol side effects
cialis 20mg where to buy cialis online no prescription - cialis price with prescription
cheap tramadol online tramadol 50mg capsules dosage - tramadol 50mg how many
buy tramadol online what is tramadol dosage - tramadol with acetaminophen high
buy cialis online cialis samples - cialis que es
cheap cialis 20mg cialis daily trial - cialis online miglior prezzo
can you buy cialis over the counter cheap cialis in usa - cialis last longer
order tadalafil cialis online legale - cialis 0 2
http://landvoicelearning.com/#44827 tramadol hcl lethal dose - tramadol 50 mg with ibuprofen
http://landvoicelearning.com/#62431 tramadol dosage 627 - get cheap tramadol
buy tramadol tramadol hcl 50 mg dogs side effects - buy tramadol american express
tramadol without prescription tramadol stronger than vicodin - tramadol yahoo
buy tramadol 50mg tramadol high dose - order tramadol online reviews
buy tramadol rx tramadol zanaflex - tramadol for dogs recommended dosage
buy tramadol online no prescription overnight tramadol cream - tramadol 200mg high
buy ativan online ativan for norco withdrawal - generic ativan online
buy ativan online ativan dosage body weight - buy lorazepam online with mastercard
http://ranchodelastortugas.com/#58720 cost of generic xanax at walmart - .5mg xanax drug test
buy tramadol online tramadol hcl high effects - tramadol for dogs and people the same
xanax 2mg xanax no prescription legal - xanax drug abuse symptoms
http://bayshorechryslerjeep.com/#8193 xanax side effects 2012 - xanax weight loss
Post a Comment