vote up 4 vote down star
2

I have created my own xPath library for Delphi 2006 and have used it since. It works fine but could have more performance, and I don’t really have the time to maintain it any more.

What other library could I use?

flag

50% accept rate
I's called XPath, with an upper-case X, ... – ulrichb Feb 18 at 13:44

3 Answers

vote up 3 vote down

OmniXML has good XML and XPath support, and it's free with source. Works with many versions of Delphi, too, including 2007 and 2009.

link|flag
Well, I wouldn't call XPath support in OmniXML good. It covers only most basic stuff. No support for expressions, for example. – gabr Feb 16 at 6:55
I guess you'd know that better than I would. :-) It's done everything I needed, anyway. – Ken White Feb 16 at 14:10
vote up 3 vote down

I import the MSXML library and use it directly. Works like a charm.

link|flag
I've used msxml with Delphi for several years now. Works well for me. I've occasionally been caught with the wrong version on a machine, but overall it does the job for me, and I'm sure MS are putting more resources into development than I ever could. – Richard A Feb 17 at 2:03
vote up 1 vote down

The Open XML, Alternative Document Object Model (ADOM) is also a great (and 100% Delphi) XML library including XPath support. It has DTD validation support, but unfortunately no XSD support.

http://www.philo.de/xml/downloads.shtml

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.