Implementing a 24 queue using MSMQ and WCF
Posted
by miker169
on Stack Overflow
See other posts from Stack Overflow
or by miker169
Published on 2010-03-28T13:26:15Z
Indexed on
2010/03/28
13:33 UTC
Read the original article
Hit count: 190
I am shortly starting a project, which requires messages to be held in a queue for a period of 24 hours, this is because the database can't have any updates at certain times of the month. The service also has to be hosted on windows server 2003, which means it will have to be a windows service.
It is also required that the service use WCF so that in 12 months time when we move over to windows server 2008, the service can hosted in iis 7. At present I am wondering if MSMQ is the best way to handle this.
I've been looking into topics like poison message handling & dead letter queues, but nothing that really covers what I am intending to actually do. Could anyone recommend a sample or a tutorial for this ?
Thanks in advance
© Stack Overflow or respective owner