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
2010/04/19
19:04 UTC
Read the original article
Hit count: 318
I want to restrict HTTP methods to those required by the MOSS07 application(s) using IIS6. I am not able to find a solution after googling.
Can any one help.
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