Where I used to work, we were purely Azure & at other previous jobs I did mostly web applications. In Azure, I would create a Worker to act as a Service Bus Queue Listener...but in this position, I am needing to create a Windows Service (to act as an MSMQ Listener) and it has been quite a while since I have done so & have a few minor questions.
- QUESTION: Would a normal Windows Service do or is there a better WCF Windows Service option or equivalent?
- QUESTION: I need to ensure multiple copies of the same service can be instantiated on the same box...how do I do this? Do I need to set any properties to do this?
- QUESTION: If I wanted to ensure only one copy could be instantiated, how would I do that?
UPDATE:
I basically need to run many instances of the same executable on the same box. So, I am trying to figure out how to do that.
Any supporting articles are welcomed. I 'googled' quite a bit, but didn't find much that is recent. Most seem outdated. Hence, the question.
Thanks for the help.