all groups > dotnet web services > october 2006 >
You're in the

dotnet web services

group:

Enumeration in WebService


Enumeration in WebService Sadagopan
10/12/2006 3:46:01 PM
dotnet web services:
Hi,
I am thinking of returning enumerated data types in my web service response.
My enumeration values are driven from a database lookup table. The table get
new lookup records and these need to be enumerated to the clients.
The problem I face is , any time when these new records are added , the WSDL
changes and the client needs to update the reference , if not there is a
compatibility issue.
The other option I thought of supporting different versions of webservice so
that the compatibility is not broken.
Questions
1. Is it a good option to return enumerated values in this type of scenario
2. If no to question1 what will be the recommened solution for these type of
lookup scenario
3. If yes to question1 how do we handle compatibility issue
Appreciate your help
Re: Enumeration in WebService John Saunders
10/12/2006 11:13:57 PM
[quoted text, click to view]

Salesforce.com has a web service based API. It allows customers to very
thoroughly customize the application, adding new columns to tables, and even
adding new tables and relations between tables. Naturally, the WSDL changes
to reflect this.

They have an area on their web site where you can download your own,
customer-specific WSDL, up to date with whatever changes you've made. You
could do the same, or have a web service operation which returns the current
WSDL.


As to enumerated values, they're ok (once you deal with a dynamic WSDL). Be
aware, though that XML Schema doesn't do enumertions like a programming
language does. One can enumerate the acceptable values for a particular
attribute or element, but that is only a constraint on the lexical space.
The enumerated values don't have integers associated with them.

John

AddThis Social Bookmark Button