5 years ago i've developed a program which used MSMQ.
Back then, i used the System.Messaging.MessageQueue
and the System.Messaging.MessageQueueTransaction
to put items on the msmq.
Nowadays i see people using WCF, and i'm confused wether to use WCF.
First of all most of the code examples only show how to put items ON the queue using WCF, and not get the OFF, but more important: when i use the WCF/MSMQ solution, i have to create an extra project, namely the wcf service.
Creating a wcf service of course is not the problem, but i also have to install it on production.
So i am wondering: why should i use wcf to put items on the queue, and not the solution with the .Net objects?
Or am i incorrect that i assume that when i use scf, that i need an EXTRA app to deliver, namely the wcf app?
EDIT: The scneario is this: we have a website where people can unsubscribe. In stead of hitting the database directly (to unsubscribe) we put the unsubscribe request on a queue and another service (windows service or console app) will get the items from the queue and do the database actions