1. 程式人生 > >asp.net webservice 不能遠端除錯 解決方法

asp.net webservice 不能遠端除錯 解決方法

webservice介面是通過url地址進行呼叫的,在本地開發呼叫可以填寫資料值進行呼叫,可是佈署在伺服器後就不能遠端除錯

沒有輸入引數的文字框,奇怪。

後來,才知道在config配置一下就行了。

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

</system.web>