vote up 5 vote down star
3

VS.net creates a template when you create a WCF project.

It adds a class to the iService1.cs file:

// Use a data contract as illustrated in the sample below to
// add composite types to service operations.
[DataContract]
public class CompositeType
{
    bool boolValue = true;
    string stringValue = "Hello ";

    [DataMember]
    public bool BoolValue
    {
        get { return boolValue; }
        set { boolValue = value; }
    }

    [DataMember]
    public string StringValue
    {
        get { return stringValue; }
        set { stringValue = value; }
    }
}

Since a WCF service can return any user defined class, why use a DataContract and CompositeType class?

I can return something like:

 [OperationContract]
MyUserCollection GetUsers();

What am I missing?

flag

22% accept rate
If you have .NET on both ends of the wire, that's just fine. What if you have a Java client calling your service? If you put your data inside DataContracts, that information gets stored in the WSDL/XSD metadata and can be used by clients other than .NET, too. – marc_s Mar 9 at 11:06

2 Answers

vote up 11 vote down

The DataContract is just a formal definition of a type that can be understood on both sides of the service boundary.

If you return, as in your example, a "MyUserCollection" object, the consumers of your service will need to reference the innards of your service/system, which is a violation of the SOA tenet of explicit boundaries. By using a DataContract, you are publishing the structure of your return types in a loosely-coupled way.

link|flag
My WCF is being consumed by apps written by me, so in all practical purposes it should be ok (to voilate SOA). Do you concurr? – Blankman Nov 19 '08 at 19:30
You probably could, but why would you want to? Adding the attribute is painless and is the recommended way to work with WCF. – Scott Dorman Nov 19 '08 at 19:40
Scott, so I just add my MyUserCollection to the CompositeType class and bingo!? – Blankman Nov 19 '08 at 19:44
You may need to add a [KnownType(MyUserCollection)] attribute to the CompositeType class. I would try it first without one; if it doesn't work you will get an exception saying to add MyUserCollection to the list of known types, in which case just add the attribute. – Scott Dorman Nov 19 '08 at 20:03
vote up 2 vote down

Another interesting thing to notice, is if you decorate your code with DataContract, you have a lot of control about what the client can see and must send back to your service. For example:

[DataContract]
public class SampleClass
{
    [DataMember(IsRequired=true)]
    public int MyRequiredProperty { get; set; }

    [DataMember]
    public int MyOptionalProperty { get; set; }

    public int MyInternalProperty { get; set; }
}

On the example above, you defined that when receiving data, you MUST have MyRequiredProperty, and you can have or not MyOptionalProperty. Also, the client will never see MyInternalProperty (this can be for example some property that helps with your logic internally, but you don't want it being exposed at the client level).

link|flag

Your Answer

Get an OpenID
or

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