vote up 0 vote down star

One of my [DataContract] classes contains a [DataMember] which is a List. BaseClass has a few different sub-classes.

Whenever that List contains instances of any sub-class, an exception occurs during/after the Service is returning to the request channel. If the List does not contain any sub-classes, it works fine.

Here is an example of my code (which itself doesn't work):

public class BaseClass
{
}
public class BaseClassSub : BaseClass
{
}

[DataContract]
public class MyClass
{
	List<BaseClass> m_Classes = new List<BaseClass>();

	[DataMember]
	public List<BaseClass> Classes
	{
		get { return m_Classes; }
		set { m_Classes = value; }
	}
}


[ServiceContract]
public interface IMyService
{
	[OperationContract]
	MyClass GetMyClass();	

}

public class MyService : IMyService
{
	public MyClass GetMyClass()
	{
		MyClass o = new MyClass();

		//THIS WORKS!!!!
		//o.Classes = new List<BaseClass>() { new BaseClass() };

		//THIS DOES NOT WORK!!!!
		o.Classes = new List<BaseClass>() { new BaseClassSub() };

		return o;
	}
}

I get the following error when debugging:

The socket connection was aborted. This could be caused by an error processing your message or a receive timeout being exceeded by the remote host, or an underlying network resource issue. Local socket timeout was '00:00:59.6560000'.

Anyone know how to resolve this issue (getting it to handle sub-classes)?

flag
Please don't make us guess about the exception. Post the whole exception. Catch it and then post ex.ToString(). – John Saunders Aug 3 at 4:00

2 Answers

vote up 0 vote down

After more searching, I went ahead and put a [KnownType] attribute on BaseClass (see below), and it is now working.

[KnownType(typeof(BaseClassSub))]
public class BaseClass
{
}

I hope this helps others at least!

link|flag
vote up 2 vote down

You need to tell the Data Contract Serializer the types it might encounter. See Data Contract Known Types.

link|flag
Thanks! I just missed your reply as I was posting! – Dan Aug 3 at 4:09

Your Answer

Get an OpenID
or

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