开发者

turn off web service test page on localhost

开发者 https://www.devze.com 2023-03-20 14:24 出处:网络
Ho开发者_如何学Cw can I turn off the HTTP POST test page that is created automatically for web services?

Ho开发者_如何学Cw can I turn off the HTTP POST test page that is created automatically for web services?

I'd prefer that it not come up if someone enters the .asmx path.


<webServices> 
  <protocols>
    <remove name="HttpGet"/>
    <remove name="HttpPost"/>
    <remove name="HttpPostLocalhost"/>
  </protocols>
</webServices>

This should do it.

0

精彩评论

暂无评论...
验证码 换一张
取 消