XPath in Delphi7? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T03:01:34Z http://stackoverflow.com/feeds/question/517145 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/517145/xpath-in-delphi7 4 XPath in Delphi7? Ricardo Acras 2009-02-05T18:14:02Z 2009-09-17T21:01:48Z <p>What is the best way of searching XML documents using XPath in Delphi7?</p> http://stackoverflow.com/questions/517145/xpath-in-delphi7/517286#517286 3 Answer by Gamecat for XPath in Delphi7? Gamecat 2009-02-05T18:40:53Z 2009-02-06T23:05:10Z <p>It depends on the size of the xml document. But I have good experience with both MSXML and its Saxon counterpart.</p> <p>If the xml is large (>50 MB) or the queries are heavy (use some // to make your system crawl) expect some delay time. But else it is perfectly doable. </p> <p>In later versions, msxml is available as a unit. In version 7 you need to install a type library:</p> <ul> <li>Go to Project\Import type library</li> <li>Select Microsoft XML, (the highest version you can find)</li> <li>Select Create unit to create MSXML_TLB</li> </ul> <p>You can use MSXML_TLB to read xml documents, use xslt and perform xpath queries:</p> <pre><code>var doc : IXMLDomDocument2; list : IXMLDomNodeList; node : IXMLDomNode; i : Integer; begin doc := CoDOMDocument.Create; doc.load(xmlfilename); list := doc.selectNodes(xpath); for i := 0 to list.length-1 do begin node := list.item[i]; if node&lt;&gt;nil then Memo1.Lines.Add(node.nodeName); end; end; </code></pre> http://stackoverflow.com/questions/517145/xpath-in-delphi7/1441332#1441332 0 Answer by SoftwareSculptor for XPath in Delphi7? SoftwareSculptor 2009-09-17T21:01:48Z 2009-09-17T21:01:48Z <p>Hi,</p> <p>When I have to deal with XML files in Delphi I always use <a href="http://www.omnixml.com/" rel="nofollow">OmniXML</a>, a component I've been using for years. I'm totally happy with it, mainly because it's light, easy to use and <strong>free</strong>.</p> <p>And it works with XPath in a easy way also. It's worth a try, I hope it helps you also.</p>