Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
5.00/5 (3 votes)
See more:
I am using XSD.exe to generate C# classes corresponding to my schema which are consumed by a C++/CLI app to produce XML documents based on the schema, but I am not comfortable with it for a couple of reasons.

1. I cant read the schema information from the autogenerated class, therefore.
2. More importantly a change to the class involves substatanial rework.

How can I use SOM with either C# or C++/CLI to interogate the Schema directly and build my XML documents based on the outcome of this interrogation?

I would appreciate shared experiences.

Meantime I am looking at a couple of online examples and trying to figure out what to do next...
Posted

1 solution

What we did was derive from the generated classes to minimize the impact changes had on our code base. Still, changes of the schema did mean regenerating the classes and recompiling the application.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900