Reputation: 9733
I need to process xml and xsd docs into a 'C' program I am writing on freebsd. Does anyone know if any libraries available (must be some like XML DOM) so that I do not need to read it like text and do all stupid things?
For example: I want to do operations like, adding a particular node at a designated place in the xml node tree and all.
Upvotes: 0
Views: 197
Reputation: 7143
You probably should look at libxml2. It has a DOM interface and most other things you might want to do at a node manipulation level. I'm not sure from your question if you need XSD validation or not. There is an incomplete xsd validation plugin but I've not used it so I can't comment further on that.
Upvotes: 1