2

I have an XSD file and I want to create an XML file at runtime based on the XSD. (My question is basically the same as this one, except in the .NET world, rather than for Java.)

I have run xsd.exe /c /l:vb MyTest.xsd, but that generates a class that cannot be instantiated and used, as it has nested classes that are never instantiated. It appears that the generated class is only used for XML deserialization, but I don't have an XML file to deserialize from.

Running xsd.exe /d /l:vb MyTest.xsd generates a dataset, but it looks like using that would be more coding than just writing out an XmlDocument manually.

What is the best way to create an XML file based on a specific schema?

Community
  • 1
  • 1
Jason Berkan
  • 8,734
  • 7
  • 29
  • 39
  • possible duplicate of [Is there a class to generate a sample XML document from XSD schema in .NET](http://stackoverflow.com/questions/41674/is-there-a-class-to-generate-a-sample-xml-document-from-xsd-schema-in-net) – Alex Angas May 19 '10 at 01:24

2 Answers2

2

I use an XML tool (oXygen) that offers this as part of its capabilities. I'm sure there are others, that's just what we use here.

TMN
  • 3,060
  • 21
  • 23
1

It turns out I was just being obtuse. While the classes generated by xsd contain uninitialized nested classes, they are exposed via public properties, so there is nothing stopping me from instantiating them myself.

Something like the following:

ElementA.ElementB = New ElementB()
ElementA.ElementB.Name = "Jason"
Jason Berkan
  • 8,734
  • 7
  • 29
  • 39