WCF - Examine Request Queue

I have a simple question about queries in WCF. WCF automatically queues requests for a service (the service is single-point) when several users request the same process, that is, they say that I have a function that takes some time and two users make a call to this function whether WCF automatically request queue, so that after the completion of the first request, he begins to process the next?

~ Just Wondering

+4
source share
1 answer

The service behavior attribute in the contract determines how sessions, instances, and concurrency are handled. See http://msdn.microsoft.com/en-us/library/ms731193.aspx for details.

Basically, you can configure it to (1) process one request at a time or (2) several requests at the same time.

+2
source

All Articles