vote up 0 vote down star

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?

flag

33% 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 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 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 at 16:03

4 Answers

vote up 1 vote down check

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|flag
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 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 at 14:09
vote up 0 vote down

This did the trick for us.

[XmlType(TypeName = "DerivedClassA")]

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
Tried that, but it didn't help. Anything else? – Nick Oct 12 at 19:10

Your Answer

Get an OpenID
or

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