cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use JMP Live to centralize and share reports within groups. Webinar with Q&A April 4, 2pm ET.
Choose Language Hide Translation Bar
View Original Published Thread

XPath Query() and XML namespaces

john_madden
Level VI

I have a bunch of XML documents that I want to put into a data column. I want to use XPath expressions to pull out values from them, by appending columns that contain formulas that make use of the XPath Query() function.

 

Some of my documents have XML-namespace qualified element names. For example, one might look like this:

 

<?xml version="1.0" encoding="UTF-8"?>
<synopsis xmlns="http://www.cap.org/pert/2009/01/" xmlns:colon="http://www.cap.org/pert/2009/01/colon/">
    <clinical>
        <clinicalFindings>
            <clinicalFinding value="mass"/>
        </clinicalFindings>
    </clinical>
    <specimen>
        <procedures>
            <colon:procedure value="segmental colectomy"/>
        </procedures>
        <sites>
            <colon:site value="cecum" primary="true"/>
        </sites>
        <tumorLocations>
            <colon:tumorLocation value="cecum"/>
        </tumorLocations>
    </specimen>
</synopsis>

It appears that Xpath Query() can't understand namespace-qualified names. It gives an XPath error for an XPath of  "/synopsis/specimen/sites/colon:site/@value" or of "/default:synopsis/default:specimen/default:sites/colon:site/@value".

 

If I remove all namespace qualification, it seems to do okay. Unfortunately for me, my documents use XML namespaces a lot.

 

 

Does anyone have experience with the XPath Query() function? Is there a way to make it XML-namespace aware?

0 REPLIES 0