So I have xml that looks like this:

<todo-list>
  <id type="integer">#{id}</id>
  <name>#{name}</name>
  <description>#{description}</description>
  <project-id type="integer">#{project_id}</project-id>
  <milestone-id type="integer">#{milestone_id}</milestone-id>
  <position type="integer">#{position}</position>

  <!-- if user can see private lists -->
  <private type="boolean">#{private}</private>

  <!-- if the account supports time tracking -->
  <tracked type="boolean">#{tracked}</tracked>

  <!-- if todo-items are included in the response -->
  <todo-items type="array">
    <todo-item>
      ...
    </todo-item>
    <todo-item>
      ...
    </todo-item>
    ...
  </todo-items>
</todo-list>

How would I go about using .NET's serialization library to deserialize this into C# objects?

Currently I'm using reflection and I map between the xml and my objects using the naming conventions.

link|improve this question

feedback

6 Answers

up vote 32 down vote accepted

Create a class for each element that has a property for each element and a List or Array of objects (use the created one) for each child element. Then call System.Xml.Serialization.XmlSerializer.Deserialize on the string and cast the result as your object. Use the System.Xml.Serialization attributes to make adjustments, like to map the element to your ToDoList class, use the XmlElement("todo-list") attribute.

A shourtcut is to load your XML into Visual Studio, click the "Infer Schema" button and run "xsd.exe /c schema.xsd" to generate the classes. xsd.exe is in the tools folder. Then go through the generated code and make adjustments, such as changing shorts to ints where appropriate.

link|improve this answer
In VS2010 it is called 'Create Schema' and may generate multiple xsd files (one per namespace). In that case, include those in the command, i.e. run "xsd.exe /c schema.xsd schema1.xsd " (etc). – jeroenk Feb 2 at 11:43
feedback

Instructions Here

link|improve this answer
+1 good link, saved many lines of code – Shiraz Bhaiji Sep 18 '09 at 11:48
feedback

You should have a look at http://www.canerten.com/xml-c-class-generator-for-c-using-xsd-for-deserialization/

There's a (Microsoft) tool that helps creating the needed XSD to properly deserialize XML into an object

link|improve this answer
feedback

There are a couple different options.

  • Visual Studio includes a command line program called xsd.exe. You use that program to create a schema document, and use the program again on the schema document to creates classes you can use with system.xml.serialization.xmlserializer
  • You might just be able to call Dataset.ReadXml() on it.
link|improve this answer
feedback

Well, you'd have to have classes in your assembly that match, roughly, the XML (property called Private, a collection property called ToDo, etc).

The problem is that the XML has elements that are invalid for class names. So you'd have to implement IXmlSerializable in these classes to control how they are serialized to and from XML. You might be able to get away with using some of the xml serialization specific attributes as well, but that depends on your xml's schema.

That's a step above using reflection, but it might not be exactly what you're hoping for.

link|improve this answer
feedback

Checkout http://xsd2code.codeplex.com/

Xsd2Code is a CSharp or Visual Basic Business Entity class Generator from XSD schema.

link|improve this answer
@Deepfreezed: please give more detail. How would this solve the problem in this question. Maybe show a code example of using the tool. – John Saunders Apr 15 '10 at 23:48
First I generated the XSD schema for the XML using VS. Then I ran the code generation tool above. This generated a class/object that I can use to serialize the XML. This tool integrates with VS 2008/2010. It also has some nice features like generic collections. – Deepfreezed Apr 21 '10 at 21:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.