I have a schema (xsd) and I want to create xml files that match it.
I found code generators that generate classes that can be loaded from an XML file (CodeSynthesis). But I want to go in a different direction.
I want to generate code that allows me to create an object that can be easily written as an XML file. In C ++. I could use Java for this, but C ++ would be preferable. I am on solaris, so the VisualStudio plugin will not help me (e.g. xsd2code).
Is there a code generator that allows me to do this?
source
share