Wcf – Reuse types in current assembly for WCF Proxies

wcf

VS WCF integration has nice option "Reuse types in refrenced assemblies". The problem is that I need the same but for the current assembly. Some of the types are already defined in my assembly and I need to reuse them.

Usage scenario:

  1. I have assembly, and have TypeA here.
  2. I add Service Reference ot it, and one of the methods returns type that is fully compatible with TypeA(properties, name).
  3. Add Service Reference generates proxy, but it recreate new TypeA within.

On the step 3 I need proxy that will return TypeA. Not new TypeA.

Best Answer

If I understand what you want to do, then it's an scenario I commonly run into, and well, WCF does have a decent answer to: Just don't use SvcUtil / WS Service Reference wizards.

If you have most of the contract classes already defined in your client side (be that because you have a shared assembly or because you have equivalent classes defined on your project), you might as well just go to the next step and either import the complete service contract in code form or simply redefine it on the client side.

There's nothing that forces you to use svcutil and friends, just define your interface and either use the channel model directly (i.e. ChannelFactory<T> and friends) or, if you prefer to use proxy classes, just create your own ClientBase<T>-derived class. It's really very easy and it will save you trouble in the long run.

Related Topic