I want to write a Windows service in .Net 2.0 that listens and processes a message queue (MSMQ).
Instead of reinventing the wheel, can someone post an example of a better way to do this? It should process things one at a time, never in parallel (e.g. threads).
In fact, I want him to poll the queue, if there is anything there, process it, remove it from the queue and repeat. I want to do this with system efficiency.
Thanks for any suggestions!
source
share