Universal XML API

 

Universal XML API
Dale Michalk

What's up with .NET? Windows developers will likely be spending a lot of time with this initiative over the coming months and years. This tip, excerpted from InformIT, discusses a universal API for XML, and discusses how different classes interact with one another.


XpathNavigator provides a generic access API over multiple types of document sources. The XmlDocument class of the DOM world, the XmlDataDocument class that bridges the DOM world with ADO.NET and the DataSet, and the XPathDocument class that we focus on in this article for XPath/XSLT document processing are all capable of producing an XPathNavigator from their XML data sources. They signal this capability to outside clients by implementing the IXPathNavigable interface, which has a single method named CreateNavigator that returns an instance of XPathNavigator. XslTransform, the workhorse class for XSLT processing in .NET, is able to consume XPathNavigator and XPathDocument instances to transform documents in an efficient manner.

XPathNavigator shares the cursor-style access paradigm and the read-only limitation of XmlReader. If you need to create XML content, you have to look at the XmlDocument or XmlWriter

    Requires Free Membership to View

    When you register, you'll begin receiving targeted emails from my team of award-winning writers. Our goal is to provide a unique online resource for developers, architects and development managers tasked with building and maintaining enterprise applications using Visual Basic, C# and the Microsoft .NET platform.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchWinDevelopment.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchWinDevelopment.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

classes. Fortunately, XPathNavigator is well suited for quick and easy information retrieval. Data retrieval and cursor movement are accomplished by methods and attributes anchored on the XPathNavigator class. The attributes in the following list are remarkably similar to the XmlReader class.

  • Name
  • Value
  • NodeType
  • LocalName
  • Prefix
  • HasAttributes
  • HasChildren

To read the article from which this tip is excerpted, click over to InformIT. You have to register there, but the registration is free.


This was first published in July 2002

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.