Click here to Skip to main content
15,881,173 members
Articles / WCF

Operation Contract Overloading in WCF... Not Your Usual Polymorphism!

Rate me:
Please Sign up or sign in to vote.
4.33/5 (8 votes)
31 Jul 2020CPOL5 min read 9.9K   3   1
How to do operation contract overloading in WCF
In this post, we will discuss method overloading in WCF services – why it does not work and what options we have.

There is no denying the fact that Microsoft has made life easy for developers, both Windows and Web. Over the years, Mirosoft have come up with great IDEs using which any High School Student could go ahead and build a fully functional application (Yes, it’s that easy).

Microsoft makes things easy for people by abstracting all the complexities of any technology or development environment. The underlying basics of any technology are abstracted into things like toolboxes and familiar syntax for a developer. BUT, sometimes the abstraction feels so real that we forget the very basic principles of the technology we are using.

Same holds true for WCF services. WCF services are actually web services with a lot of Microsoft magic to make it look like any other OOP (Object Oriented Programming) technology. A lot of the magic can be credited to the familiar VS IDE and the C#/VB programming language.

Just because C#/VB (language used in WCF development) supports (function)Polymorphism, does not mean web services support it.

This is exactly what Microsoft does to a lot of naive developers. Abstract all the intricacies and complexities of the real thing. Although this (the fact that web services do not support function polymorphism) may sound like “usual” to a lot of Web developers out there, BUT believe me, a whole lot of developers are not aware of this.

It's like JavaScript NOT supporting method overloading; BUT a lot of people who have never had a need for overloading methods in their JS files, do NOT know this.

But, getting around method overloading problems in JavaScript is a different blog post.

We’ll be discussing method overloading in WCF services here – Why it does not work and what options do we have.

Honestly, even I wasn’t aware of this fact a while ago, before a friend of mine (Rahul Verma) decided to enlighten me on this.

So, on to the issue. You build a WCF application in Visual Studio.

  1. You write out a Service Contract class, say ServiceX.cs
  2. You write an Operation Contract say void DoWork();
  3. You write another Operation Contract say void DoWork(string message);
  4. Build the Project; the Project’s Build succeeds.

Now, as soon as you launch your WCF Web service (hitting something like http://localhost/ServiceX.svc) -> “BAM!!!”, you have an error message.

Server Error in ‘/’ Application.

Cannot have two operations in the same contract with the same name, methods DoWork and DoWork in type WcfServiceApp.IServiceX violate this rule. You can change the name of one of the operations by changing the method name or by using the Name property of OperationContractAttribute.

Well, as you can see, the error message is Self Explanatory. What went wrong is that we assumed that Web services behave the same way as any Object Oriented language and that we could indeed overload methods in Web services.

The issue occurs when our IIS tries to get the metadata of the web service and generate the WSDL, at that point, it throws an exception (for reasons stated above). Microsoft might have had their own reasons for not putting compile time checks for this in WCF services (though it would be nice to have it).

Now, on to the solution and options available to us from here. But before that, we need to get our head around 2 facts.

First, we need to accept the fact that method overloading is just a programming technique to make/keep our code manageable/maintainable. In some cases, it also improves the readability of the code. BUT, it's not something we cannot do without.

Second, there is absolutely no clean solution to get around this issue. You can never achieve/leverage the full benefits of method overloading in web services. That’s how the web is built.

Workaround #1

Use the Name property of Operation Contract Attribute to differentiate the methods in WSDL.

[OperationContract(Name = "DoWork1")]

[OperationContract(Name = "DoWork2")]

Result: The web service will build fine and host successfully, BUT when you consume the web service in a Client, the method names in the intellisense will be DoWork1() and DoWork2(string message).

So, we have achieved overloading on the server, BUT while consuming the methods, we still do not have the same method names. We have to call different methods.

Workaround #2

You can specify the same name methods in different Service contracts. For e.g., you could have void DoWork() in IServiceX.cs and void DoWork(string message) in IServiceY.cs.

Result: The web service will build fine and host successfully, BUT when you’ll be consuming the web service, you’ll have to anyways instantiate different Client Channel/Proxys for IServiceX and IServiceY.

Hence, we still do not have proper method overloading.

Workaround #3

Now, if you are hell bent on having method overloading available on the client consuming the WCF service, we have a hack for that.

First, implement workaround #1, then you could actually tinker with the generated metadata classes (Reference.cs) and change the method names/attributes of the generated methods.

This way, you’ll have proper overloaded methods in intellisense.

The downside of this method is the next time the proxy class is generated, you’ll loose your manual modifications. That’s the reason the method is not very practical.

So, going by the above observations, it seems futile to try to achieve method overloading in WCF web services. It's best to avoid it in web services as implementing it could involve a lot of effort and it does not seem to bring any real benefits to the bench.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
I am a Developer working across multiple Technologies like .NET, Scala, Angular and NodeJS.
Passionate about WEB technologies more than anything.
Fascinated about the idea of how the WEB world and the WinForm world are slowly merging into each other, with a very thin line to differentiate them.

I am an active blogger and I blog mostly about Technology. Also, I have presented at certain points in the past on technical topics.

My Blog


Life & Tech

Programming Community Profiles


Stack Overflow
GitHub

Presentations


Slideshare

Social Profiles


Facebook | Twitter | LinkedIn | Google+

Comments and Discussions

 
GeneralNice article and another method Pin
KevinFernandes18-Jul-14 2:18
KevinFernandes18-Jul-14 2:18 

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.