vote up 5 vote down star
3

Please indicate your best practices for building XML using C#.

Edit:

With the help of Shog9, I just learned about the "community wiki" feature, and happily turned it on.

If you like a particular answer, vote it up. If you don't like a particular answer, feel free to shake your fist violently in the air and vote it down.

flag
This question reads like a poll. Are you looking for a specific implementation better than serialization, or a survey of different approaches? – Robert S. Nov 12 '08 at 15:49
Both, I guess. I'm looking for different approaches hoping to find one that is better than serialization. I appreciate code examples. Just curious about your question now -- are polls or 'poll like questions' a no-no? – Dan Esparza Nov 12 '08 at 16:16
@Dan: poll questions are... discouraged. If you're asking a question which cannot have a single correct answer, you'd mark it "community wiki" (encourage readers to vote on answers vs. re-posting existing answers). For an actual poll (finite set of answers) you'd then provide the answers yourself. – Shog9 Nov 12 '08 at 16:55

11 Answers

vote up 27 vote down check

It depends on the scenario. XmlSerializer is certainly one way, and has the advantage of mapping directly to an object model. In .NET 3.5, XDocument etc are also very friendly. If the size is very large, then XmlWriter is your friend.

For an XDocument example:

    Console.WriteLine(
        new XElement("Foo",
            new XAttribute("Bar", "some & value"),
            new XElement("Nested", "data")));

Or the same with XmlDocument:

    XmlDocument doc = new XmlDocument();
    XmlElement el = (XmlElement)doc.AppendChild(doc.CreateElement("Foo"));
    el.SetAttribute("Bar", "some & value");
    el.AppendChild(doc.CreateElement("Nested")).InnerText = "data";
    Console.WriteLine(doc.OuterXml);

If you are writing a large stream of data, then any of the DOM approaches (such as XmlDocument/XDocument etc) will quickly take a lot of memory. So if you are writing a 100MB xml file from csv, you might consider XmlWriter; this is more primative (a write-once firehose), but very efficient (imagine a big loop here):

    XmlWriter writer = XmlWriter.Create(Console.Out);
    writer.WriteStartElement("Foo");
    writer.WriteAttributeString("Bar", "Some & value");
    writer.WriteElementString("Nested", "data");
    writer.WriteEndElement();

Finally, via XmlSerializer:

    [Serializable]
    public class Foo
    {
        [XmlAttribute]
        public string Bar { get; set; }
        public string Nested { get; set; }
    }
    ...
    Foo foo = new Foo
    {
        Bar = "some & value",
        Nested = "data"
    };
    new XmlSerializer(typeof(Foo)).Serialize(Console.Out, foo);

This is a nice model for mapping to classes etc; however, it might be overkill if you are doing something simple (or if the desired xml doesn't really have a direct correlation to the object model). Another issue with XmlSerializer is that it doesn't like to serialize immutable types : everything must have a public getter and setter (unless you do it all yourself by implementing IXmlSerializable, in which case you haven't gained much by using XmlSerializer).

link|flag
I'm not sure what you mean by your last comment "If the size is very large, then XmlReader is your friend." Can you elaborate? – Dan Esparza Nov 12 '08 at 15:43
sure - I'll edit – Marc Gravell Nov 12 '08 at 15:45
I think you mean XmlWriter rather than XmlReader :), but other than that great answer. – Greg Beech Nov 12 '08 at 16:02
Don't forget about XStreamingElement, msdn.microsoft.com/en-us/library/…. :) – Todd White Nov 12 '08 at 16:12
@Toll - thanks; I knew I'd missed one... – Marc Gravell Nov 13 '08 at 5:02
vote up 0 vote down

new XElement("Foo", from s in nameValuePairList select new XElement("Bar", new XAttribute("SomeAttr", "SomeAttrValue"), new XElement("Name", s.Name), new XElement("Value", s.Value) ) );

link|flag
vote up 2 vote down

The best thing hands down that I have tried is LINQ to XSD (which is unknown to most developers). You give it an XSD Schema and it generates a perfectly mapped complete strongly-typed object model (based on LINQ to XML) for you in the background, which is really easy to work with - and it updates and validates your object model and XML in real-time. While it's still "Preview", I have not encountered any bugs with it.

If you have an XSD Schema that looks like this:

  <xs:element name="RootElement">
     <xs:complexType>
      <xs:sequence>
        <xs:element name="Element1" type="xs:string" />
        <xs:element name="Element2" type="xs:string" />
      </xs:sequence>
       <xs:attribute name="Attribute1" type="xs:integer use="optional" />
       <xs:attribute name="Attribute2" type="xs:boolean" use="required" />
     </xs:complexType>
  </xs:element>

Then you can simply build XML like this:

RootElement rootElement = new RootElement;
rootElement.Element1 = "Element1";
rootEleemnt.Element2 = "Element2";
rootEleemnt.Attribute1 = 5;
rootEleemnt.Attribute2 = true;

Or simply load an XML from file like this:

RootElement rootElement = RootElement.Load(filePath);

Or save it like this:

rootElement.Save(string);
rootElement.Save(textWriter);
rootElement.Save(xmlWriter);

rootElement.Untyped also yields the element in form of a XElement (from LINQ to XML).

link|flag
Thanks for the heads up! – Dan Esparza Sep 2 at 0:01
vote up -3 vote down

As above.

I use stringbuilder.append().

Very straightforward, and you can then do xmldocument.load(strinbuilder object as parameter).

You will probably find yourself using string.concat within the append parameter, but this is a very straightforward approach.

link|flag
Except when you forget to encode something properly and write illegal Xml. – Robert Paulson Nov 13 '08 at 21:07
vote up 1 vote down

In the past I have created my XML Schema, then used a tool to generate C# classes which will serialize to that schema. The XML Schema Definition Tool is one example

http://msdn.microsoft.com/en-us/library/x6c1kb0s(VS.71).aspx

link|flag
vote up 0 vote down

For simple cases, I would also suggest looking at XmlOutput a fluent interface for building Xml.

XmlOutput is great for simple Xml creation with readable and maintainable code, while generating valid Xml. The orginal post has some great examples.

link|flag
vote up 3 vote down

Also check out the Mark Resmussen's XmlDocument fluent interface, which really provides easy to type/read XML output.

link|flag
vote up 0 vote down

For simple things, I just use the XmlDocument/XmlNode/XmlAttribute classes and XmlDocument DOM found in System.XML.

It generates the XML for me, I just need to link a few items together.

However, on larger things, I use XML serialization.

link|flag
vote up 2 vote down

XmlWriter is the fastest way to write good XML. XDocument, XMLDocument and some others works good aswell, but are not optimized for writing XML. If you want to write the XML as fast as possible, you should definitely use XmlWriter.

link|flag
vote up 2 vote down

I would give XLINQ (read: LINQ to XML) a try. It's easy, intuitive and is easily editable.

link|flag
I found this find really useful, thanks Chad. While there are times serialization is the right answer, there are plenty of scenarios where complex xml generation in code is the right answer. It is a shame C# doesnt have the same inline Xml capababilities as VB.net. Thanks again. – Russell Sep 30 at 6:15
vote up -4 vote down

Use StringBuilder.Append(). It's the best because it is the most flexible; if you had to pick a single tool to build XML for any purpose, in any scenario, ever, then you'd want this sort of flexibility.

Of course, limiting yourself to a single tool is kinda dumb when you have so many available. XML Serialization is fine for converting an object graph to/from XML, but painfully unwieldy for many other purposes. DOM, Writer, LINQ all have their places, and to ignore them because you've decided there must be a single "best" way is foolish.

link|flag
I've seen too many cases where using StringBuilder to build XML resulted in XML that wasn't well-formed. It's just too easy to forget to escape strings everywhere necessary. – jalbert Sep 1 at 22:54
@jalbert: StringBuilder is a terrible, terrible solution for creating XML. It is, however, the most flexible - as you note, no other solution allows you to create malformed XML as easily and with as much variety as does StringBuilder. Point being, there is no "best" solution... – Shog9 Sep 1 at 23:41

Your Answer

Get an OpenID
or

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