开发者

.Net Remoting server connection limit

开发者 https://www.devze.com 2023-01-23 02:36 出处:网络
Is there a limit on th开发者_StackOverflow中文版e number of connection a .Net Remoting server can handle?Depends on the type of server.

Is there a limit on th开发者_StackOverflow中文版e number of connection a .Net Remoting server can handle?


Depends on the type of server.

If it is a "Single Call" server then for each request the remoting infrastructure creates a new instance of the server object on a new thread. The thread is taken from a thread pool which in .net usually contains around 25 threads.

It may also depend on the type of underlying transport TCp or HTTP which have thier own limitations.

And one more possiblity will be the limitations imposed by the operating system itself concerning remote connections to a machine (on TCP channel for instance).

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号