How does Concurrency work in WCF?

前端 未结 5 1097
天涯浪人
天涯浪人 2021-01-31 21:57

I am a novice in WCF and SOA. I am just starting out on these, I have a theoretical doubt:

Client A has called a service and the logic is currently executing on the se

5条回答
  •  深忆病人
    2021-01-31 22:16

    You can control the concurrency using the ConcurrencyMode and control how new connections are handled via InstanceContextMode - this is the Microsoft documentation.

    The number of concurrent connections can also be throttled - have a look at the serviceThrottling element in the your WCF Config.

提交回复
热议问题