Sunday, 15 March 2015

c# - .Net Remoting uses only one connection ? -



c# - .Net Remoting uses only one connection ? -

does .net remoting opens multiple connections or 1 ? allow have server , client. if client creates multiple singlecall objects. every object there going new connection or there going single connection every object ?

i can't find reply anywhere.

the number of network connections depends on remoting channel use. default tcpchannel opens many network connections many threads in programme seek access server during 1 point of time.

for single-threaded applications, tcpchannel uses 1 network connection.

as opposite example, 3rd party remoting channel iiopchannel uses multiplexing , allows have few network connections many hundreds of active threads.

c# .net remoting connections

No comments:

Post a Comment