Click here to Skip to main content
15,885,141 members
Articles / Programming Languages / C#
Article

Sharing Types Between WCF Service and Client

Rate me:
Please Sign up or sign in to vote.
2.57/5 (5 votes)
16 Jul 20071 min read 68.4K   409   22   6
An article on sharing types between WCF service and client.

Introduction

One option in WCF I find very valuable is the ability to share types between the service and the client proxy. The /reference option of the SvcUtil allows the generated client proxy to reuse some types defined in a shared assembly.

Background

When a client proxy for a web service is generated, a definition for all complex types is generated as well. This creates two problems:

  • If you use the same type in more than one service, the generated client code may have multiple definitions for the same type
  • Any useful properties, constructors and collections used in the server type definition are lost

While the second problem is simply an annoyance, the first one may create a lot of headaches.

Let's assume the SharedType class is defined in the code used by the service like this:

C#
[DataContract(Namespace = "http://mycode.com/types")]
public class SharedType
{
    private string name;

    [DataMember]
    public string Name
    {
        get { return name; }
        set
        {
            if (value == null || value.Length < 3)
                throw new ApplicationException();

            name = value;
        }
    }

    [DataMember(Name = "Attributes")]
    private List<string> attributes = new List<string>();

    public ICollection<string> Attributes
    {
        get { return attributes; }
    }

    public SharedType()
    {
    }

    public SharedType(string name)
    {
        this.Name = name;
    }
}

If the client proxy is generated without reference to the assembly with the data types, the SharedType class is generated like this:

C#
[System.CodeDom.Compiler.GeneratedCodeAttribute
            ("System.Runtime.Serialization", "3.0.0.0")]
[System.Runtime.Serialization.DataContractAttribute
                (Namespace="http://mycode.com/types")]
public partial class SharedType : object, 
            System.Runtime.Serialization.IExtensibleDataObject
{
    private System.Runtime.Serialization.ExtensionDataObject 
                            extensionDataField;
    private string[] AttributesField;
    private string NameField;

    public System.Runtime.Serialization.ExtensionDataObject ExtensionData
    {
        get { return this.extensionDataField; }
        set { this.extensionDataField = value; }
    }

    [System.Runtime.Serialization.DataMemberAttribute()]
    public string[] Attributes
    {
        get { return this.AttributesField; }
        set { this.AttributesField = value; }
    }

    [System.Runtime.Serialization.DataMemberAttribute()]
    public string Name
    {
        get { return this.NameField; }
        set { this.NameField = value; }
    }
}

It is easy to notice that this type does not have the constructor with argument name and the Attributes property is implemented as Array instead of List.

To generate client proxy that refers to the original type use the following options of the ServiceModel Metadata Utility Tool (Svcutil.exe):

"c:\Program Files\Microsoft SDKs\Windows\v6.0\Bin\SvcUtil"
    /l:cs
    /out:SharedTypeService.cs
    /config:..\App.config
    /n:*,MyClient.Proxy
    <b>/r:..\..\MyTypes\bin\MyTypes.dll</b>
    http://localhost/MyService/SharedTypeService.svc?wsdl 

Now the client proxy refers to the assembly with the data contracts and the client may take advantage of all accessors and useful methods coded in it.

Using the code

The code is a sample that demonstrates how a client proxy can be generated by referring to the data contracts used in the service.

History

  • No updates

References

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralThanks for the tip Pin
venkatpv19-Mar-12 3:42
venkatpv19-Mar-12 3:42 
GeneralMy vote of 5 Pin
Member 331429029-Nov-11 11:03
Member 331429029-Nov-11 11:03 
GeneralThis article is not relevant anymore ! Pin
Froyke13-Sep-10 4:03
Froyke13-Sep-10 4:03 
GeneralRe: This article is not relevant anymore ! Pin
M Waqas Aziz11-Feb-18 19:21
M Waqas Aziz11-Feb-18 19:21 
GeneralNo proxy.cs generated when /r is used Pin
Jigar B Patel23-Apr-08 23:18
Jigar B Patel23-Apr-08 23:18 
QuestionGenerating constants using svcutil Pin
syamala_198111-Dec-07 19:20
syamala_198111-Dec-07 19:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.