On IIS 6 how can I allow the PUT operation on a WCF Rest API?
Since I don't have the .svc file (I added a route on global.asax to service class) I can't allow the put operation on the .svc extension on IIS 6.
On IIS 6 how can I allow the PUT operation on a WCF Rest API?
Since I don't have the .svc file (I added a route on global.asax to service class) I can't allow the put operation on the .svc extension on IIS 6.
Other solution suggest changing the verbs for a given extension, but if you don't have one thne this wildcard thing works.
There may be a better way of course but it works for us
PUT verb for us would not work when calling the API via CURL for testing yet other verbs were ok.
For us the solution was:
Hope that helps someone.
(please note i tried the WILDCARD suggestion below but did not resolve our issue)