I\'m working on moving an API project from raw http handlers where I\'m using periods in the paths:
http://server/collection/id.format
I wo
I was able to achieve this by doing the following: replace "*." with "*" in system.webServer.handlers in web.config, i.e. remove the period.
"*."
"*"