How many concurrent connections is a web service limited to?
So I could potentially have 10 separate computers running the same web service method at once ?
- assuming the server can handleWell I would say that it depends on the amount of power the server has and the amount of web pages the site can handle.
Yup
It is in a way like a web page you can serve more then one page at technically the same time (milliseconds).
Hi,
You can check the ASP.NET configuration file for thread pool related parameters, :
maxconnection
maxWorkerThreads
maxIoThreads
The maxconnection parameter determines how many connections can be made to a specific IP address.
0 comments:
Post a Comment