讓 .Net WebService 可以在 remote 機器上用瀏覽器執行

Invoke a .Net WebService on a remote browser.

方法其實很簡單,打開 webservice 的目錄裡頭的 web.config 加入下面這些就可以了 😀

<configuration>
    <system.web>
    <webServices>
        <protocols>
            <add name="HttpGet"/>
            <add name="HttpPost"/>
        </protocols>
    </webServices>
    </system.web>
</configuration>