【发布时间】:2017-01-01 05:25:12
【问题描述】:
我编写了一个 WCF 服务,但我有一些关于 HttpProtocol 的错误请帮助我
【问题讨论】:
标签: asp.net web-services wcf webserver wia
我编写了一个 WCF 服务,但我有一些关于 HttpProtocol 的错误请帮助我
【问题讨论】:
标签: asp.net web-services wcf webserver wia
显然你忘记了<system.webServer> 父标签,
https://www.iis.net/configreference/system.webserver/httpprotocol
喜欢,
<configuration>
<system.webServer>
<httpProtocol allowKeepAlive="true" />
</system.webServer>
</configuration>
【讨论】: