vote up 2 vote down star

I am trying to define a WCF contract that returns an interface, something like below:

[ServiceContract]
public interface IMyContracts
{
    [OperationContract]
    IMyInterface GetData(string request);
}

To get this to work I think my interface (IMyInterface) would have to implement ISerializable to ensure classes implementing my interface can be serialized. This then means I have to manually implement serialization for any classes implementing my interface.

It seems that either I use my interface and risk runtime errors if a class is used that is not serializable, or I make the interface implement ISerializable and have the associated hassle of manual implementation.

Am I confusing myself and missing something obvious? How have other people returned interfaces using WCF and avoided this problem?

Thanks very much.

flag

IMHO it will depend on the binding you are using: wsHttpBinding, netTcpBinding, ... For example if you use SOAP as underlying transport you cannot serialize interface methods, but only properties. – Darin Dimitrov Jan 6 '09 at 15:33

1 Answer

vote up 4 vote down check

AFAIK, the problem is not with serialization but with the fact that you're returning abstract entity (an interface). Abstraction is an OO concept, not SOA concept. So, your client's wcf stack may not know what to do with the class behind the interface. What if the client does not know the class behind the interface. Client's WCF stack must deserialize it, and to do it, it must know the class.

So, you must make the class(es) behind the interface part of your contract, via KnownTypeAttribute.

You may also use ServiceKnownTypeAttribute class that seems to be more flexible. Still, remember that the client must know the type, or you'll get an exception.

link|flag
Take a look at Exchange Web Service : msdn.microsoft.com/en-us/library/…, it uses polymorphism heavily. This is not a simple web service to use but it is very powerfull and coarse grained. – Nicolas Dorier Apr 21 at 9:09

Your Answer

Get an OpenID
or

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