MSMQ Adapter Listener in C#
I have one MSMQ-WCF service that is creating a queue and maintains the MSMQ queue service.
Also, I have another WCF Services hosted in WAS, working like a Listener.
As soon as a message arrives in the MSMQ Queue, it should be automatically picked from the queue and the message should be read.
I just wanted to use it MSMQ Listener adapter. Is there any other way to do this? Please let me know.
It's much simpler to host the queue listener in a windows service. This way there is no need to involve WAS and all the complicated setup that can involve.
链接地址: http://www.djcxy.com/p/55806.html上一篇: 定期检查WCF MSMQ队列侦听器
下一篇: C#中的MSMQ适配器监听器