I have added an WCF REST endpoint with WebHttpBinding to our existing ASP.NET server hosted on IIS 6. When I make a GET request such as http://{server}/cmis.svc/object/{object_id}, the object is returned by the server. But when I make a DELETE request to the same URL, IIS returns 403.1 error (Forbidden: Execute access is denied). I tried setting the Write permission on the Home Directory tab of the website but that didn't help. As you can see from the URL, cmis.svc is at the root of the website.

Any guesses what might be going wrong?

Thanks.

link|improve this question

75% accept rate
2  
In your Request Filtering on your site are you disallowing the DELETE verb? – Richard Blewett Jul 21 '11 at 10:06
@Richard Blewett - That did the trick. I had to modify properties for .SVC extension and add DELETE to 'limit verbs to' configuration. Thanks! Now how do I mark your comment as the answer? :) – Mandar Jul 21 '11 at 11:13
feedback

1 Answer

up vote 2 down vote accepted

Use Request Filtering on the site to allow the DELETE verb

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.