up vote 2 down vote favorite
share [g+] share [fb]

I am having an issue serializing a c# class to an XML file that has a base class... here is a simple example:

namespace Domain
{
   [Serializable]
   public class ClassA
   {
      public virtual int MyProperty
      {
         get; set;
      }
   }
}

namespace Derived
{
   public class ClassA : Domain.ClassA
   {
      public override int MyProperty
      {
         get { return 1; } set { /* Do Nothing */ }
      }
   }
}

When I attempt to serialize an instance of Derived.ClassA, I receive the following exception:

InvalidOperationException(Types 'Domain.ClassA' and 'Derived.ClassA' both use the XML type name 'ClassA', from the namespace ". Use XML attributes to specify a unique XML name and/or namespace for the type.)

The problem is that I want to create a single base class that simply defines the structure of the XML file, and then allow anyone else to derive from that class to insert business rules, but that the formatting will come through from the base.

Is this possible, and if so, how do I attribute the base class to allow this?

link|improve this question

62% accept rate
Thanks for the input. The problem is, I rarely ask questions, and when I do, they're generally very tough and I have yet to get an answer to a question I asked which helped me yet. So what am I to do? – Nick Oct 12 '09 at 19:09
That's indeed a tricky situation... you should accept answers - but if you don't get any useful answers, it's hard to pick one to accept.... I don't have the ultimate answer to that.... – marc_s Oct 12 '09 at 19:48
I agree... It's not that I don't want to accept answers. At the same time, I don't want to accept answers just to say I've accepted one. I think that defeats the purpose and changes the meaning of what "accepted" means. – Nick Oct 13 '09 at 16:03
feedback

6 Answers

up vote 2 down vote accepted

If you're free to rename the derived classes to something different than their base class, you can use XmlAttributeOverrides to do this:

// For ClassB, which derives from ClassA
XmlAttributes          attributes  = new XmlAttributes();                        
attributes.XmlRoot                 = new XmlRootAttribute("ClassA");

XmlAttributeOverrides  overrides   = new XmlAttributeOverrides();
overrides.Add(typeof(ClassB), attributes);

XmlSerializer   serializer  = new XmlSerializer(typeof(ClassB), overrides);

This will serialize to <ClassA> ... </ClassA> and can serialize from that into ClassB instances.

As far as I can tell, there's no way to do this when the base and derived classes have the same name (outside of taking full control of the serialization process via Data Contract Surrogates or some other overkill method).

link|improve this answer
The solution that eventually worked was similar to this, but not quite as complicated. You are correct in that the .NET class names have to be different... unfortunately, .NET namespaces are not used for whatever reason. So the simplest was to have a ClassABase for the simple version, and attach the XmlRoot attribute to it of ClassA, and then have the derived class called ClassA. They both serialized identically then. The overrides as part of the serializer where not needed. – Nick Oct 15 '09 at 13:32
Excellent! But will that work for ClassB that derives from ClassABase? Or do you only need one subclass? – Jeff Sternal Oct 15 '09 at 14:09
feedback

This did the trick for us.

[XmlType(TypeName = "DerivedClassA")] 
link|improve this answer
feedback

I think your derived class also needs to be marked with the [Serializable] attribute to be serializable / deserializable.

Besides the serializable attribute, you also need to make one of the two have a different XML name - as the error says, in "XML world", they're both called "ClassA". One of them must be named differently, using the XmlElement attribute (assuming you're using the XmlSerializer - right?)

namespace Domain
{
   [Serializable]
   [XmlElement(ElementName="ClassABase")]
   public class ClassA
   {
      public virtual int MyProperty
      {
         get; set;
      }
   }
}

namespace Derived
{
   [Serializable]
   public class ClassA : Domain.ClassA
   {
      public override int MyProperty
      {
         get { return 1; } set { /* Do Nothing */ }
      }
   }
}

Marc

link|improve this answer
Tried that, but it didn't help. Anything else? – Nick Oct 12 '09 at 19:10
feedback

Set a base namespace for your domain and a set custom element name for the derived class:

namespace Domain
{
    [Serializable]
    [XmlRoot(Namespace = "http://mynamespace/domain/2009/")]
    public class ClassA
    {
        [XmlIgnore]
        public virtual int MyProperty { get; set; }
    }
}

namespace Derived
{
    [Serializable]
    [XmlRoot(ElementName = "DerivedClassA")]
    public class ClassA : Domain.ClassA
    {
        public override int MyProperty
        {
            get
            {
                return 1;
            }
            set
            {
                base.MyProperty = value;
            }
        }
    }
}
link|improve this answer
feedback

I had this same problem, but with an added restriction: no access to the source for either the Domain or the Derived classes. A Derived object inherited from a Domain object, and, because the classes had the same unqualified names, XmlSerializer would fail to serialize an object of the Derived class.

This could have probably been solved with brute force (modifying the IL for one of the classes to add the appropriate attributes), but I wanted something "cleaner". Here's what worked:

var attrs = new XmlAttributes();
attrs.XmlType = new XmlTypeAttribute("anythingButClassA");

var overrides = new XmlAttributeOverrides();
overrides.Add(typeof(Domain.ClassA), attrs);

var serializer = new XmlSerializer(typeof(Derived.ClassA), overrides);
serializer.Serialize(Console.Out, new Derived.ClassA());

Even if you are the author of the Domain and/or Derived classes, this way you do not need to rename them.

link|improve this answer
feedback

This is just informational as it doesn't provide a specific answer, but here's a good article from the July 2003 MSDN issue discussing these name collisions. "XML Namespace Collisions, XmlNodeList and Deserialization, and More".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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