New at MSMQ and WCF. I want to be able to process incoming MSMQ messages at a high rate. I want to make it Multithreaded (and transactional). What is the best way of doing this? Any examples, code snippets, theories are very much welcome. Also, how is WCF able to know if there is a message in the MSMQ? Or would I have to create a Windows Service that polls the MSMQ, then for messages found, start it on a new thread and invoke the WCF service and pass the message to it? What is the best way?
Many thanks