GS 服务器端开启webservice 远程调试的方法

时间:2023-01-19 19:29:41

1. 修改 安装目录下 web.config的文件.

一般目录为:

C:\Program Files\GenerSoft\bscw_local\web.config

为了保证安全想把文件备份一下.

2. 首先 web.config 不允许一个对象 部署两遍

所以先搜一下 complitaion

找到对应的节点 将debug 改为true

    <compilation defaultLanguage="c#" debug="true" optimizeCompilations="true">

3. 找到 </webServices> 节点, 新增加内容如下

注意 红色部分是新增加的部分, 不允许在其他地方新增 不然会报 500 错误

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

<soapExtensionTypes>
</soapExtensionTypes>
</webServices>

4. 重启IIS 即可