Ive added a MIME type on idesktop for IIS 7.5 so that it now accepts and responds to GET requests for .json files. It works great.
But I also need to accept request requests using the POST method
I tried adding an additioanl handler to the ISAPI module and checked the box to accept all verbs, but no different. Indeed, hitting his head against the wall, as it was right in IIS 6.
Here is the answer from firebug
Cache-control private
Allow GET, HEAD, OPTIONS, TRACE
Content-Type text / html; charset = utf-8
Server Microsoft-IIS / 7.5
X-Powered-By ASP.NET
Date Wed, 15 Feb 2012 11:16:34 GMT
Content-Length 5669
Response Status - Method Not Allowed 405
Thanks in advance
source share