I have a WCF service using WebHttpBinding.
I use the following configuration:
InstanceContextMode = InstanceContextMode.Single, ConcurrencyMode = ConcurrencyMode.Multiple
I have limited the MaxConcurrentCalls to 20.
What I see is the following: if the limit of 20 is reached, new connections/requests are queued. How can I achieve that something like a "service busy" message is send instead?
Many thanks