Click here to Skip to main content
15,886,137 members
Articles / Programming Languages / XML
Article

XMLFormatter provider for serialization

Rate me:
Please Sign up or sign in to vote.
4.64/5 (10 votes)
25 Sep 20062 min read 108K   1.5K   35   21
Creating a custom XMLFormatter for serialization of objects.

Introduction

During the development process of our project, the need arose to serialize objects to XML. For this purpose, the .NET provides the XmlSerializer class to serialize objects. This class has some disadvantages, however.

First, the creation of the class is expensive in performance. This is caused by the fact the class creates an in-memory assembly to quickly read and write from the objects to serialize. It does this by using reflection to inspect the object. This leads to the second disadvantage; only public properties and fields are serialized. These properties also have to be writable so that the XmlSerializer can set the properties during deserialization. This leads to problems encapsulating your code. Finally, but not less important, it does not support the ISerializable interface.

Alternatives

To get around these problems, you can use the SoapFormatter class to serialize the object to SOAP. This class does support the ISerializable interface, and does not use reflection. The resulting XML, however, is less accessible than the plain XML the XmlSerializer produces, and has a lot of overhead. The only thing left is to create your own formatter by implementing the IFormatter interface.

XmlFormatter

The code accompanied by this article contains our XmlFormatter class that has the following features:

  • Produces more clean XML than the SOAP structure of the SoapFormatter
  • Supports the ISerializable interface
  • Does not impact performance by creating in-memory assemblies

The following example shows the use of the formatter, by serializing a class called MyObject:

C#
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.Serialization;
namespace XmlFormatterSample
{
    [Serializable]
    public class MyObject : ISerializable
    {
        public string MyPublicProperty
        {
            get { return _myPublicProperty; }
            set { _myPublicProperty = value; }
        }
        private string _myPublicProperty;
        private string MyPrivateProperty
        {
            get { return _myPrivateProperty; }
            set { _myPrivateProperty = value; }
        }
        private string _myPrivateProperty;
        public MyObject()
        {
            this._myPublicProperty = "This is my public property";
            this._myPrivateProperty = "This is my private property";
        }
        public string GetProperties()
        {
            string properties = "MyPublicProperty = " + 
                                 MyPublicProperty + "\r\n";
            properties += "MyPrivateProperty = " + 
                           MyPrivateProperty;
        return properties;
        }
#region ISerializable Members
        /// <summary>
        /// Special serialization constructor.
        /// </summary>
        /// <param name="info"></param>
        /// <param name="context"></param>
        public MyObject(SerializationInfo info, 
                        StreamingContext context)
        {
            _myPublicProperty = info.GetString("MyPublicProperty");
            _myPrivateProperty = info.GetString("MyPrivateProperty");
        }
        /// <summary>
        /// Interface method to place the properties
        /// in the serialization queue
        /// </summary>
        /// <param name="info"></param>
        /// <param name="context"></param>
        public void GetObjectData(SerializationInfo info, 
                                  StreamingContext context)
        {
            info.AddValue("MyPublicProperty", MyPublicProperty);
            info.AddValue("MyPrivateProperty", MyPrivateProperty);
        }
#endregion
    }
}

The following code serializes and deserializes the object from and to a MemoryStream using our XmlFormatter. Please note that both the public and the private properties are being serialized.

C#
using DotNetMagazine.September.Examples;
using System.IO;
using System.Xml;
using System.Data.SqlTypes;
namespace XmlFormatterSample
{
    class Program
    {
        static void Main(string[] args)
        {
            MyObject object1 = new MyObject();
            MyObject object2;
            // write the properties to the console
            Console.WriteLine("The properties of object1 are:");
            Console.WriteLine(object1.GetProperties());
            Console.WriteLine();
            // serialize the object 
            // ***************************************
            MemoryStream stream = new MemoryStream();
            XmlFormatter serializer = 
               new XmlFormatter(typeof(MyObject));
            serializer.Serialize(stream, object1);
            // reset the stream to the beginning
            stream.Position = 0;
            SqlXml xml = new SqlXml(stream);
            // ***************************************
            // write the XML value to the console
            Console.WriteLine("Xml value of object 1:");
            Console.WriteLine(xml.Value);
            Console.WriteLine();
            
            // recreate the object in object 2
            using (MemoryStream stream2 = 
                   new MemoryStream(Encoding.UTF8.GetBytes(xml.Value)))
            {
                object2 = (MyObject)serializer.Deserialize(stream2);
            }
            // write the properties to the console
            Console.WriteLine("The properties of object2 are:");
            Console.WriteLine(object2.GetProperties());
            Console.WriteLine();
            Console.WriteLine("Press any key to continue");
            Console.ReadKey();
        }
    }
}

The code is free to use in your projects. This code is also part of an article published in the Dutch version of the .NET magazine, September issue 2006: "Objecten en Sql Server 2005, XML als intermediair". We hope this formatter will be of use to you!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Netherlands Netherlands
Patrick Boom works as a Software Engineer at Capgemini Netherlands for the last 6 years.

Comments and Discussions

 
QuestionWhat is the license governing the source code Pin
SGUS17-Nov-14 23:23
SGUS17-Nov-14 23:23 
Hi,

as this article has no explicit license attached to it, and I also couldn't find a license in the download files themselves, can you tell me what the governing license terms for the source code is?

best
Stefan
Questionchanged or missing member results in exception Pin
apoplex200814-Dec-11 6:52
apoplex200814-Dec-11 6:52 
GeneralQuestion regarding Attributes Pin
Lea Hayes27-Jan-09 5:12
Lea Hayes27-Jan-09 5:12 
Questionserialization of arrays Pin
squeelydan22-Aug-07 1:26
squeelydan22-Aug-07 1:26 
Generalplz help me Pin
aliCarryme22-Aug-07 0:56
aliCarryme22-Aug-07 0:56 
GeneralProblems with a non ISerializable implementing class Pin
Chris Richner13-Aug-07 13:30
Chris Richner13-Aug-07 13:30 
GeneralGood idea! Pin
ppschmitz14-Feb-07 2:36
ppschmitz14-Feb-07 2:36 
GeneralIList handling Pin
lmarrou27-Jan-07 21:23
lmarrou27-Jan-07 21:23 
GeneralGenerics Pin
Overboard Software26-Nov-06 6:33
Overboard Software26-Nov-06 6:33 
GeneralXMLFormatter vs. Generics Pin
Keith Vinson3-Oct-06 6:54
Keith Vinson3-Oct-06 6:54 
GeneralRe: XMLFormatter vs. Generics Pin
Patrick Boom3-Oct-06 21:02
Patrick Boom3-Oct-06 21:02 
GeneralRe: XMLFormatter vs. Generics Pin
Keith Vinson4-Oct-06 4:39
Keith Vinson4-Oct-06 4:39 
GeneralRe: XMLFormatter vs. Generics Pin
Patrick Boom4-Oct-06 22:30
Patrick Boom4-Oct-06 22:30 
QuestionDiscussion about the XmlFormatter class? Pin
M.Lansdaal28-Sep-06 9:54
M.Lansdaal28-Sep-06 9:54 
AnswerRe: Discussion about the XmlFormatter class? Pin
Patrick Boom1-Oct-06 23:03
Patrick Boom1-Oct-06 23:03 
GeneralRe: Discussion about the XmlFormatter class? Pin
M.Lansdaal2-Oct-06 5:37
M.Lansdaal2-Oct-06 5:37 
GeneralNice idea Pin
dchrno20-Sep-06 8:22
dchrno20-Sep-06 8:22 
GeneralRe: Nice idea Pin
Patrick Boom20-Sep-06 21:15
Patrick Boom20-Sep-06 21:15 
GeneralShame Pin
NormDroid19-Sep-06 21:43
professionalNormDroid19-Sep-06 21:43 
GeneralRe: Shame Pin
NinjaCross20-Sep-06 23:04
NinjaCross20-Sep-06 23:04 
GeneralRe: Shame Pin
Patrick Boom3-Oct-06 21:04
Patrick Boom3-Oct-06 21:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.