I've heard some people saying that enums are evil and shouldn't be used in web services because of the mismatches that could occur between the server and the client if some values are assigned, or if the enum is marked with the Flags attribute. They also said that web services exposing enums are harder to maintain but couldn't really give me viable arguments. So from your experience what are the pros and cons of using enums in a WCF web service?
|
The reason people recommend to avoid enums in webservices is because they create subtle backwards compatible problems. The same applies to regular enums but in web services the problem is even more clear specially in .NET-generated proxies (see below).
By defining the parameter as a string you signal the user of your API that the value may change in the future. Even if you think that the value will never change is a good practice to be ready. There is a good post by Dare Obasanjo on this topic. |
|||
|
|
Enumerations are fully supported in WSDL and XSD through the So you should have no problem using enumerations with any standards compliant platforms. |
|||
|
|
I have used enums in WCF, also in interoperability scenarios. If you control both sides of the service, it is easier to work with. If you only control one side of the service, you need to look out for the issues that you mentioned. Enums are so much better that string variables, or what else you might choose to use. Using strings instead of enums is an anti pattern called "loosey Goosey" in SOA. |
|||
|
|
|
Of course, it all depends on where you are going to use this WCF service. If it's a single application that will use it, then changing the contract won't have any effects. If it's multiple internal applications, changing the contract might require some changes on the other applications. And finally, if the WCF service is public, you might have to provide 2 versions of the service with differents version so that the people consuming them have the time to transfer their version of the client to the new service. It all depends on your needs honestly. |
||||
|
|
|
Enums in WSDLs must be considered as a concern for maintenance. Adding or removing an enumeration value is(should be!) a trigger for a major update of the interface. If the enum is an output value, then you necessarily need to define a new version of the WSDL through a new URI, so to keep current clients from breaking the established contract("what if they receive on of these new, unexpected values in return?") If the enum is an input value, you could consider this as a minor update("since current clients won't need to know about this new value"), but then, the only way for those clients to benefit from the addition of this new option/functionnality (you added this new enum value for a reason, right?) would be to ask them to switch, later or sooner, to the new version of the interface. And this doesn't have to do with the functionnal meaning of the enum, I think. Stay on the best practices side, and you'll be safe. |
|||
|
|
I've used enums in my WCF based services without any problems. The possible issues you mention are definitely things to consider, although if you make sure you apply enums in fairly static situations you probably won't have much trouble. |
|||
|
|