XIncProc XPointer Processor >

Xmlns Scheme

XIncProc XPointer processor support fully XPointer Xmlns Scheme

Example

Given a simple xml :

            <customer xmlns="http://example.org/customer">
                <name xmlns="http://example.org/personal-info">John Doe</name>
            </customer>
        

The following expression:

xmlns(c=http://example.org/customer) xmlns(p=http://example.org/personal-info)
        xpointer(/c:customer/p:name)

Will result <name xmlns="http://example.org/personal-info">John Doe</name>

Further Details