3

could you recommend a good XML open source writer and reader,

to generate and read XMLs?

none
  • 4,669
  • 14
  • 62
  • 102
  • Does it really need to be open source, or do you just want something that doesn't cost any money? Delphi already comes with royalty-free XML components. – Rob Kennedy May 01 '11 at 16:19

1 Answers1

17

NativeXml and OmniXML are open source and popular XML libraries for Delphi. ADOM is another, it is included in some versions of Delphi. For some advanced use cases, libxml with the Delphi wrapper Libxml2 might be interesting.

mjn
  • 36,362
  • 28
  • 176
  • 378
  • 1
    I use OmniXML lots, and I love it. Pure open source, full source code. No third party or platform-specific requirements, which is the reason I stay away from MSXML wrappers. – Warren P May 01 '11 at 17:13