DPStano 15 Posted December 5, 2021 Does anyone know about free SAX parser (just pascal based, not COM interop)? thx Share this post Link to post
Remy Lebeau 1394 Posted December 6, 2021 For XML? You could try using libxml2 (http://xmlsoft.org), which is a free cross-platform C-based XML parser that has both SAX and DOM APIs, and offers bindings for Pascal. Share this post Link to post
PeterBelow 238 Posted December 7, 2021 On 12/5/2021 at 7:17 PM, DPStano said: Does anyone know about free SAX parser (just pascal based, not COM interop)? thx http://saxforpascal.sourceforge.net is quit good in my experience, I used it in a few projects a couple of years ago. Share this post Link to post
DavidJr. 1 Posted February 6 Hi, Have you tried this (saxforpascal) with Delphi 11.3? Or is there anything newer that may work. I am opening 3MF files and the XML files that are big take too long so I was wanting to convert to using SAX implementation of XML parsing. Thanks, David On 12/7/2021 at 6:00 AM, PeterBelow said: http://saxforpascal.sourceforge.net is quit good in my experience, I used it in a few projects a couple of years ago. Share this post Link to post
ertank 27 Posted February 7 I own a commercial license and used SAX parsing in OXml. You might want to check out https://github.com/ashumkin/OXML This is an old version. Though license allows you to use it in commercial applications under certain conditions and it might work for you. Share this post Link to post
DavidJr. 1 Posted February 7 13 hours ago, ertank said: I own a commercial license and used SAX parsing in OXml. You might want to check out https://github.com/ashumkin/OXML This is an old version. Though license allows you to use it in commercial applications under certain conditions and it might work for you. Yes. I purchased a license. great stuff! Thanks! 1 Share this post Link to post