WCF competitive consumer pattern
Posted
by Simon Thompson
on Stack Overflow
See other posts from Stack Overflow
or by Simon Thompson
Published on 2010-04-10T20:06:19Z
Indexed on
2010/04/10
20:13 UTC
Read the original article
Hit count: 293
Is it possible to create a WCF service (web service) that only accepts a single connection at any one time with all other calls either queued or rejected.
Need to implement the competitive consumer pattern where there are a number of clients which could deal with task at hand but when a client askes for more work a task must go to only one of them. Usual done as part of an enterprise service bus but can not find one that I'm happy to start using so looking to get this behaviour through a WCF service.
Any ideas people ?
© Stack Overflow or respective owner