Pros and Cons of Web Services Versioning Strategies

前端 未结 1 1725
后悔当初
后悔当初 2021-02-20 07:43

Update 20100224 I really don\'t need some lame definitions from some vendor website. What I am looking for is practical implementation and challenges faced in the daily IT/busin

相关标签:
1条回答
  • 2021-02-20 07:57

    Web services in our application are just a front-end to the business logic.

    New version of web service appears due to business logic change. When new version of web service is introduced it is placed under new url. For instance:

    ver1 /websvc
    ver2 /websvc2

    There is special code between web service layer and business layer. This layer handles differences in the web services versions and passes a call to the latest business layer.

    It is the problem of the special facade code (between web service and business logic) to know web service version differences.

    0 讨论(0)
提交回复
热议问题