Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Visual Studio and SvcUtil can be used to generate proxy code to integrate with a service. In VS 2010 and prior there were issues if you wanted to maintain a cross tier reference library of shared types. This forced several workarounds to address the issue of equivalence in the data contract types and the inability to properly use the local types.

URL Reference to Issue: WCF Client Code Generation - Issue with "Reuse types from referenced assemblies"

I am using Visual Studio 2012, ASP.NET 4.5, C# code

My Question: "Has the reuse of types across assemblies been fixed in VS 2012?" I am porting over some code now but am also concerned that this bug may rear its head. I can run test cases, but it would be faster if someone had an answer already. It has been my experience that if you can not seem to find the answer online (googled it and keep getting 2011 - problem still exists).

My Goal: Allow my future development team to reuse the same types library across the corporate .Net application tiers and layers [Presentation (Website, Mobile App layer - server side, ...), Domain (Services, Business Logic Layer, Data Access Layer)]. I would like to ensure some uniformity and code reuse. Code will be as "loosely coupled" as possible in each layer, but types will be ensured via the reference assembly. Equally, I want the code to support external integration for third parties down the road. Thus my need to construct all proxy types from DataContractAttribute decorated types for outward facing services and maintain referenced types for my server side applications.

Am I going to run into any quagmires here? Is the issue in the link above been addressed? Please advise.

share|improve this question

1 Answer

up vote 3 down vote accepted

The bug which you report as existing in Reuse types from referenced assemblies option happens because by specifying re-use VS calls svcutil.exe under the hood with the /r flag.

However, svcutil.exe uses DataContractSerializer to help generate code and unfortunately this has a rather strict set of rules when it comes to parsing your service contracts.

So unless you service XSDs adhere to this set of rules svcutil.exe will switch to use the XmlSerializer, which doesn't support the /r flag (or re-use). Hence you will not be able to re-use types.

If you can reference the actual service contract types (via binary reference) this is a much better solution as you can do away with service references all together. You can also use WSCF.blue to generate your service contracts, as this has it's own custom serializer and supports re-use of types.

share|improve this answer
So far, thanks. +1 for the references. I see the hangup a bit clearer now. In terms of the architecture, I am building the tool to communicate internally via TCP, but do expect external clients down the road (thus the desire to support HTTP/HTTPS protocols. For the initial local service I expect I migh be able to make use of the binary references as the client and service will be .NET (at least initially). Do you have any reference to this in practice? I know WCF honors "equivolence" in data contracts so in theory it should support types with the same name and params. – Zack Jannsen Dec 20 '12 at 15:55
1  
To call a service interface which you have a binary reference for you can use ChannelFactory, as described here: stackoverflow.com/a/8869809/569662. Yes WCF does support equivalence so you could prepare a strong named version of your service interface assembly and ship it to external consumers as a kind of API. It depends if your consumers will be .net or not. If not you will have to expose your types over WSDL. – hugh Dec 20 '12 at 16:05
To this end - I do expect to use "binary encoding" in the data center / farm. I expect use of "text / XML encoding" for outward facing components at a later date (e.g. company ERP integration). Furthermroe, wouldn't binary references increase coupling? As this app is human response time relative "scalability" is number one. I would opt for future interchaneability and load balance across instances. In this use case would you still support "binary references"? – Zack Jannsen Dec 20 '12 at 16:07
ChannelFactory / ChannelFactory<T> was my expectation. Another point for the validation. Thank you sir. Whish I could give you more for the API comment. Worth considering. – Zack Jannsen Dec 20 '12 at 16:09
1  
Re your comment: yes coupling is created by the binary dependency. – hugh Dec 20 '12 at 16:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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