我在某个服务器上有.net网络服务。 这个网络服务每天都会收到很多请求。 有一个Android项目,分配人们使用它并与此ws交换数据。 每分钟20个请求。
最近我从服务器获得了大量的超时,我无法找出原因。 我写的web.config错了吗?还是别的什么?
这是我的配置上的system.web:
<system.web>
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/></assemblies></compilation>
<httpRuntime executionTimeout="9000" maxRequestLength="500000"/>
<webServices>
<protocols>
<add name="HttpSoap12"/>
<add name="HttpSoap"/>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
</system.web>
我该怎么做才能改进? 我可以设置最大请求数或最大带宽吗?
答案 0 :(得分:3)
你需要设置debug =“false” Debug =“true”强制Web服务器运行单线程