Processing XPath queries with namespaces in XML

Source: Internet
Author: User

Processing XPath queries with namespaces in XML

The namespace is used in XML to differentiate nodes. That is, if the XML node uses a non-default namespace, the corresponding namespace must be specified when the XPath query is used, otherwise, the node cannot be found;
There are two ways to specify the namespace information when querying an XML node: 1. Use an XPATH image; 2. Use an XPATH string.
1. Specify namespace information through the XPath object
Xmlnamespacemanager xnm = new xmlnamespacemanager (xmldocument. nametable );
Xnm. defaultnamespace = "http://www.w3c.org/w2c ";
Xmldocument. selectnodes (XPath, xnm );
2. Another method is to directly point out the node namespace in the string expression of xpath.
String XPath = "/* [local-Name () = 'orderstatusresponsev10']/* [local-Name () = 'orderstatusresponse' and namespace-Uri () = 'HTTP: // www.newegg.com/vxi/datacontract/ OS /'#/##local-name () = 'responsedetail 'and namespace-Uri () = 'HTTP: // response () = 'podetail' and namespace-Uri () = 'HTTP: // configure () = 'datafrom 'and namespace-Uri () = 'HTTP: // www.newegg.com/vxi/datacontract/ OS /response'] ";

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.