2009/05/19 12:48
ASP.NET의 웹서비스를 만들고, 이 설명 페이지를 웹에서 노출시키지 않기위해서는
아래처럼 Web.config파일을 수정하면 된다.
아래처럼 Web.config파일을 수정하면 된다.
<system.web>
<webServices>
<protocols>
<remove name="Documentation" />
</protocols>
</webServices>
....
</system.web>
<webServices>
<protocols>
<remove name="Documentation" />
</protocols>
</webServices>
....
</system.web>