vote up 0 vote down star

I have a WCF webservice that has the following service contract

[ServiceContract(Namespace = "http://example.org")]
public interface IEquinoxWebservice
{
    [OperationContract]
    Guid Init();

    [OperationContract]
    List<Message> Dequeue(Guid instanceId);

    [OperationContract]
    void Enqueue(Guid instanceId, Message message);

    [OperationContract]
    void Dispose(string instanceId);
}

Message class is an abstract class that is implemented by a bunch of concrete message classes.

I want to make all the concrete message classes available in the client proxy that is generated. Not just the message class.

Is there any way to make them available as types in the webservice so the standard Visual Studio proxy generator will create them?

flag

1 Answer

vote up 2 vote down check

You need to specify those types. See Data Contract Known Types.

link|flag

Your Answer

Get an OpenID
or

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