vote up 12 vote down star

Using csharp Dotnet 2.0, I have a composite data class that does have the [Serializable] attribute on it. I am creating an XMLSerializer class and passing that into the constructor:

XmlSerializer serializer = new XmlSerializer(typeof(DataClass));

I am getting an exception saying: There was an error reflecting type.

Inside the data class there is another composite object. Does this also need to have the [Serializable] attribute or by having it on the top object does it recursively apply it to all objects inside?

any thoughts?

flag

8 Answers

vote up 18 vote down check

Look at the inner exception that you are getting. It will tell you which field/property it is having trouble serializing.

You can exclude fields/properties from xml serialization by decorating them with the [XmlIgnore()] attribute.

I don't think that XmlSerializer uses the [Serializable] attribute, so I doubt that is the problem.

link|flag
vote up 7 vote down

Remember that serialized classes must have default (i.e. parameterless) constructors. If you have no constructor at all, that's fine; but if you have a constructor with a parameter, you'll need to add the default one too.

link|flag
Thanks for the reminder! I hate that this is a runtime error with little explanation. – Jared Updike Nov 17 '08 at 23:33
vote up 1 vote down

I too thought that the Serializable attribute had to be on the object but unless I'm being a complete noob (I am in the middle of a late night coding session) the following works from the SnippetCompiler:

using System;
using System.IO;
using System.Xml;
using System.Collections.Generic;
using System.Xml.Serialization;

public class Inner
{
    private string _AnotherStringProperty;
    public string AnotherStringProperty 
    { 
      get { return _AnotherStringProperty; } 
      set { _AnotherStringProperty = value; } 
    }
}

public class DataClass
{
    private string _StringProperty;
    public string StringProperty 
    { 
       get { return _StringProperty; } 
       set{ _StringProperty = value; } 
    }

    private Inner _InnerObject;
    public Inner InnerObject 
    { 
       get { return _InnerObject; } 
       set { _InnerObject = value; } 
    }
}

public class MyClass
{

    public static void Main()
    {
    	try
    	{
    		XmlSerializer serializer = new XmlSerializer(typeof(DataClass));
    		TextWriter writer = new StreamWriter(@"c:\tmp\dataClass.xml");
    		DataClass clazz = new DataClass();
    		Inner inner = new Inner();
    		inner.AnotherStringProperty = "Foo2";
    		clazz.InnerObject = inner;
    		clazz.StringProperty = "foo";
    		serializer.Serialize(writer, clazz);
    	}
    	finally
    	{
    		Console.Write("Press any key to continue...");
    		Console.ReadKey();
    	}
    }

}

I would imagine that the XmlSerializer is using reflection over the public properties.

link|flag
vote up 1 vote down

Also be aware that XmlSerializer cannot serialize abstract properties.. See my question here (which I have added the solution code to)..

XML Serialization and Inherited Types

link|flag
vote up 1 vote down

All the objects in the serialization graph have to be serializable.

Since XMLSerializer is a blackbox, check these links if you want to debug further into the serialization process..

Changing where XmlSerializer Outputs Temporary Assemblies

HOW TO: Debug into a .NET XmlSerializer Generated Assembly

link|flag
vote up 0 vote down

Also note that you cannot serialize user interface controls and that any object you want to pass onto the clipboard must be serializable otherwise it cannot be passed across to other processes.

link|flag
vote up 0 vote down

i have been using the NetDataSerialiser to serialise my domain classes. [link text][1]http://msdn.microsoft.com/en-us/library/system.runtime.serialization.netdatacontractserializer.aspx

the domain classes are shared between client and server.

link|flag
vote up 0 vote down

I've discovered that the Dictionary class in .Net 2.0 is not serializable using XML, but serializes well when binary serialization is used.

I found a work around here.

link|flag

Your Answer

Get an OpenID
or

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