Querying XML data across multiple files

Querying XML data across multiple files

I have XML data in multiple files. I would like to query that data across the documents. Is there any elegant way of doing so?

    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 keep you informed on recent service-oriented architecture (SOA) and SOA-related topics such as integration, governance, Web services, Cloud and more.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchSOA.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 SearchSOA.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

It depends on what you need to query for. The most widespead XML technology with query capabilities is XPath. It can be used standalone and also as part of other XML technologies, most notably XSLT.

The easiest approach would be to use an XPath tool that supports wildcard specification of filenames. Failing that, a simple batch file or Python script to iterate through the XML files, invoking an XPath/XSLT processor would do the trick.

This was first published in August 2003