Created
August 19, 2012 18:54
-
-
Save JohnMurray/3397034 to your computer and use it in GitHub Desktop.
Versioning WCF Web APIs Blog Post (http://goo.gl/PkCVc)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<location path="." inheritInChildApplications="false"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<root-application-binding>/vN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://api.mysite.com/UserInfo/<MethodName> | |
http://api.mysite.com/CarInfo/<MethodName> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://api.mysite.com/UserInfo/<MethodName> | |
http://api.mysite.com/UserInfoV2/<MethodName> | |
http://api.mysite.com/CarInfo/<MethodName> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://api.mysite.com/UserInfo/<MethodName> #version 2 | |
http://api.mysite.com/v1/UserInfo/<MethodName> #version 1 | |
http://api.mysite.com/v2/UserInfo/<MethodName> #version 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|--wwroot\ | |
|--mysite-apis\ | |
|--v1\ | |
|--v2\ | |
|--v3\ | |
`--etc. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment