Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I've seen MSMQ used transactionally and it didn't seem particularly complicated - a Transaction SCope wrapped the enqueue or dequeue calls along with database access and all was well as long as the queue was defined as transactional once it was created. I don't think this is true with ActiveMQ, which is a message broker, but MSMQ is installed locally on each endpoint machine so getting an item transactionally into the queue doesn't require a fancy distributed transaction.</p> <p>You are probably already be aware of this, but on .NET there are a few lightweight libraries that provide some nice abstractions over MSMQ (and theoretically other transports as well)</p> <p>nServiceBus : <a href="http://www.nservicebus.com" rel="nofollow noreferrer">www.nservicebus.com</a></p> <p>Mass Transit : <a href="http://code.google.com/p/masstransit/" rel="nofollow noreferrer">http://code.google.com/p/masstransit/</a></p> <p>Also, Oren Eini has an interesting if experimental file system based, transactional queue. The benefit of this library is that, unlike MSMQ, it can be deployed as a library and does not require the maintenance headache of deploying MSMQ.</p> <p>You can read about that here: <a href="http://ayende.com/Blog/archive/2008/08/01/Rhino.Queues.Storage.Disk.aspx" rel="nofollow noreferrer">http://ayende.com/Blog/archive/2008/08/01/Rhino.Queues.Storage.Disk.aspx</a></p> <p>Also, SQL Server 2005 does handle queuing fairly elegantly, using SQL Server Service Broker, but you'll need SQL Server installed at each endpoint, and I don't know if SSB crosses the firewall.</p> <p>Finally, if you don't get the answer you're looking for here I highly recommend the nSErviceBus discussion forum. Udi Dahan answers these kinds of questions along with his small band of message oriented followers, and it is the best resource I have found so far to get my queue oriented questions answered quickly and competently. That forum is here: <a href="http://tech.groups.yahoo.com/group/nservicebus/" rel="nofollow noreferrer">http://tech.groups.yahoo.com/group/nservicebus/</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload