I have implemented Web API Controller with PUT
method (I marked method with HttpPut attribute from System.Web.Http
).
And when I try to make put request, i have message
The requested resource does not support http method 'PUT'.
I remove webdav in Web.Config
, added put etc.
But it is still not work.
How I can resolve this problem?