发布Web Service 注意的问题

 记得要在web.config中添加以下配置代码,这样在其他机器上才能访问这个Web Service。

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

你可能感兴趣的:(web Service)