vote up 7 vote down star
2

I need an XML-serializable dictionary. Actually, I now have two quite different programs that need one. I was rather surprised to see that .NET doesn't have one. I asked the question elsewhere and got sarcastic responses. I don't understand why it's a stupid question.

Can someone enlighten me, given how dependent various .NET features are on XML serialization, why there isn't an XML-serializable dictionary. Hopefully, you can also explain why some people consider that a daft question. I guess I must be missing something fundamental and I'm hoping you'll be able to fill in the gaps.

flag

The question is incorrect, because it gets cause and effect wrong. It should be, "why XmlSerializer cannot serialize dictionaries"? Because there are many ways to do XML serialization in .NET, and most of them serialize dictionaries just fine (DataContractSerializer, SoapFormatter ...). – Pavel Minaev Sep 9 at 6:29

4 Answers

vote up 2 vote down check

Which features in .NET do you think are dependent on XML Serialization?

The thing about XML Serialization is that it's not just about creating a stream of bytes. It's also about creating an XML Schema that this stream of bytes would validate against. There's no good way in XML Schema to represent a dictionary. The best you could do is to show that there's a unique key.

You can always create your own wrapper, for instance One Way to Serialize Dictionaries.

link|flag
My two cases are web services and configuration files. So, you're saying that the .NET Framework guys were limited by a deficiency in the XML Schema specification? I have found stuff online but using a built-in class in a lot less work than deciding if someone else has done it right. I'll have a look at the one you suggested. – serialhobbyist Jul 14 at 12:23
ASMX web services are now considered legacy technology. See johnwsaundersiii.spaces.live.com/blog/…. There's an entire API for configuration files - it doesn't use XML Serialization. Anything else? – John Saunders Jul 14 at 12:45
BTW, the "limitation" is a design decision. As you say, it was used for web services - but not just to serialize and deserialize - it's what produced the schemas that are part of the WSDL. It's all part of a whole, and it all has to work together. – John Saunders Jul 14 at 12:46
I know they're legacy but that doesn't mean that I am going to be given the time to learn WCF. Someone noted that software shouldn't be gold-plated, it should do the job. ASMX does the job. The pace of Microsoft's development of .NET is exciting and wonderful but out of touch with the current market: training budgets slashed, cutting back, only doing work that MUST be done. The non-IT parts of the business look askance when we say "We need to upgrade because Microsoft won't be supporting technology X any more". (I know it's not just MS but it is OFTEN MS.) So I'm stuck with ASMX for now. – serialhobbyist Jul 14 at 14:06
You said that "given how dependent various .NET features are on XML serialization" you couldn't understand why there wasn't one. I said there are few features of .NET dependent on XML Ser. You mentioned ASMX and Config. I said ASMX is legacy and config doesn't use XML Ser. "Legacy" was meant to show why they'd be in no hurry to add dictionary support. Also, see johnwsaundersiii.spaces.live.com/blog/…. – John Saunders Jul 14 at 14:11
show 6 more comments
vote up 2 vote down

Create one of your own :-), the readonly feature is bonus but if you need a key other than a string then the class needs some modifications...

namespace MyNameSpace
{
    [XmlRoot("SerializableDictionary")]
    public class SerializableDictionary : Dictionary<String, Object>, IXmlSerializable
    {
    	internal Boolean _ReadOnly = false;
    	public Boolean ReadOnly
    	{
    		get
    		{
    			return this._ReadOnly;
    		}

    		set
    		{
    			this.CheckReadOnly();
    			this._ReadOnly = value;
    		}
    	}

    	public new Object this[String key]
    	{
    		get
    		{
    			Object value;

    			return this.TryGetValue(key, out value) ? value : null;
    		}

    		set
    		{
    			this.CheckReadOnly();

    			if(value != null)
    			{
    				base[key] = value;
    			}
    			else
    			{
    				this.Remove(key);
    			}				
    		}
    	}

    	internal void CheckReadOnly()
    	{
    		if(this._ReadOnly)
    		{
    			throw new Exception("Collection is read only");
    		}
    	}

    	public new void Clear()
    	{
    		this.CheckReadOnly();

    		base.Clear();
    	}

    	public new void Add(String key, Object value)
    	{
    		this.CheckReadOnly();

    		base.Add(key, value);
    	}

    	public new void Remove(String key)
    	{
    		this.CheckReadOnly();

    		base.Remove(key);
    	}

    	public XmlSchema GetSchema()
    	{
    		return null;
    	}

    	public void ReadXml(XmlReader reader)
    	{
    		Boolean wasEmpty = reader.IsEmptyElement;

    		reader.Read();

    		if(wasEmpty)
    		{
    			return;
    		}

    		while(reader.NodeType != XmlNodeType.EndElement)
    		{
    			if(reader.Name == "Item")
    			{
    				String key = reader.GetAttribute("Key");
    				Type type = Type.GetType(reader.GetAttribute("TypeName"));

    				reader.Read();
    				if(type != null)
    				{
    					this.Add(key, new XmlSerializer(type).Deserialize(reader));
    				}
    				else
    				{
    					reader.Skip();
    				}
    				reader.ReadEndElement();

    				reader.MoveToContent();
    			}
    		}

    		reader.ReadEndElement();
    	}

    	public void WriteXml(XmlWriter writer)
    	{
    		foreach(KeyValuePair<String, Object> item in this)
    		{
    			writer.WriteStartElement("Item");
    			writer.WriteAttributeString("Key", item.Key);
    			writer.WriteAttributeString("TypeName", item.Value.GetType().AssemblyQualifiedName);

    			new XmlSerializer(item.Value.GetType()).Serialize(writer, item.Value);

    			writer.WriteEndElement();
    		}
    	}

    }
}
link|flag
vote up 2 vote down

They added one in .NET 3.0. If you can, add a reference to System.Runtime.Serialization and look for System.Xml.XmlDictionary, System.Xml.XmlDictionaryReader, and System.Xml.XmlDictionaryWriter.

I would agree that it is not in a particularly discoverable place.

link|flag
These classes are not general-purpose serializable dictionaries. They're related to the implementation of serialization in WCF. – John Saunders Jul 14 at 10:46
vote up 1 vote down

Use the DataContractSerializer! See the sample below.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.Serialization;
using System.Xml;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            A a = new A();
            a.Value = 1;

            B b = new B();
            b.Value = "SomeValue";

            Dictionary<A, B> d = new Dictionary<A,B>();
            d.Add(a, b);
            DataContractSerializer dcs = new DataContractSerializer(typeof(Dictionary<A, B>));
            StringBuilder sb = new StringBuilder();
            using (XmlWriter xw = XmlWriter.Create(sb))
            {
                dcs.WriteObject(xw, d);
            }
            string xml = sb.ToString();
        }
    }

    public class A
    {
        public int Value
        {
            get;
            set;
        }
    }

    public class B
    {
        public string Value
        {
            get;
            set;
        }
    }
}

The above code produces the following xml:

<?xml version="1.0" encoding="utf-16"?>
<ArrayOfKeyValueOfABHtQdUIlS xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <KeyValueOfABHtQdUIlS>
        <Key xmlns:d3p1="http://schemas.datacontract.org/2004/07/ConsoleApplication1">
            <d3p1:Value>1</d3p1:Value>
        </Key>
        <Value xmlns:d3p1="http://schemas.datacontract.org/2004/07/ConsoleApplication1">
            <d3p1:Value>SomeValue</d3p1:Value>
        </Value>
    </KeyValueOfABHtQdUIlS>
</ArrayOfKeyValueOfABHtQdUIlS>
link|flag
<?xml version="1.0" encoding="utf-16" ?> <ArrayOfKeyValueOfABHtQdUIlS xmlns:i="w3.org/2001/XMLSchema-instance"; xmlns="schemas.microsoft.com/2003/10/…; <KeyValueOfABHtQdUIlS> <Key xmlns:d3p1="schemas.datacontract.org/2004/07/…; <d3p1:Value>0</d3p1:Value> </Key> <Value xmlns:d3p1="schemas.datacontract.org/2004/07/…; <d3p1:Value i:nil="true" /> </Value> </KeyValueOfABHtQdUIlS> </ArrayOfKeyValueOfABHtQdUIlS> – Bram Sep 9 at 6:03
@Bram: what's that? You should edit your answer if you want to add more information. – John Saunders Sep 9 at 6:21

Your Answer

Get an OpenID
or

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