在添加了现有项 web service 后,用网页访问 此 webservice 的时候,有时候会很奇怪,没有可以输入的地方,后来查明是因为在web config 里面需要添加如下:
<system.web>
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
</system.web>