Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
windows窗体客户端中有一个多线程来调用webservice方法。
我希望在多线程中同时调用 web 方法,但函数调用在队列中以在 web 服务上执行。
这不是 WCF,我应该在哪里添加连接限制?或类似的东西?
服务器站点:.net 2.0 Web 服务 asmx
客户站点:Windows 窗体应用程序
通过将以下设置添加到客户端(Windows 形式)中的 app.config,您可以定义对 Web 服务的连接限制。
连接限制在 localhost 中不起作用,因此将 Web 服务放在另一个主机中进行测试。
<system.net> <connectionManagement> <add address="*" maxconnection="24"/> </connectionManagement> </system.net>