How to restrict HTTP Methods
Posted
by
hemalshah
on Server Fault
See other posts from Server Fault
or by hemalshah
Published on 2009-10-30T11:17:26Z
Indexed on
2012/07/01
9:17 UTC
Read the original article
Hit count: 244
How can I restrict HTTP methods to those required by the MOSS07 application(s) using IIS6?
Update
This is what was written in the document
IIS6 should be used to restrict HTTP methods to those required by the MOSS07 application(s).
I also searched some books and saw something curious in O'Reilly's Sharepoint 2007 by James Pyles and others.
There is no real suppported way to use HTTP POST and HTTP GET because of the web.config settings and the static definition of the WSDL. In the web.config
<protocols>
<remove name="HttpGet">
<remove name="HttpPost">
<remove name="HttpPostLocalHost">
<add name="Documentation">
</protocols>
If we do this in the Web.Config file, would it solve the problem?
© Server Fault or respective owner