Queue alternatives to MSMQ on Windows? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T01:40:12Z http://stackoverflow.com/feeds/question/37579 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/37579/queue-alternatives-to-msmq-on-windows 4 Queue alternatives to MSMQ on Windows? Thomas Lundström 2008-09-01T07:46:43Z 2009-09-29T20:23:17Z <p>If you want to use a queuing product for durable messaging under Windows, running .NET 2.0 and above, which alternatives to MSMQ exist today? I know of ActiveMQ (<a href="http://activemq.apache.org/" rel="nofollow">http://activemq.apache.org/</a>), and I've seen references to WSMQ (pointing to <a href="http://wsmq.net" rel="nofollow">http://wsmq.net</a>), but the site seems to be down.</p> <p>Are there any other alternatives?</p> http://stackoverflow.com/questions/37579/queue-alternatives-to-msmq-on-windows/37583#37583 2 Answer by Ubiguchi for Queue alternatives to MSMQ on Windows? Ubiguchi 2008-09-01T07:51:25Z 2008-09-01T07:51:25Z <p>What abour SQL 2005's <a href="http://msdn.microsoft.com/en-us/library/ms345108.aspx" rel="nofollow">service broker</a>?</p> http://stackoverflow.com/questions/37579/queue-alternatives-to-msmq-on-windows/37606#37606 6 Answer by csmba for Queue alternatives to MSMQ on Windows? csmba 2008-09-01T08:15:33Z 2009-09-29T20:23:17Z <p>May not be "best practice" advice here... but based on real life needs and expirience: we have distributed system, 60 boxes running each 10 clients all do task X, and they need to take the next task from a "Q". The Q is being feed from one other "client"...</p> <p>We had used inter process communication, we MSMQ, we tried service broker... It just doesn't work in the long term because you are giving away the control of your application to Microsoft. It works great as long as your needs are satisfied. it becomes hell when you need something not supported.</p> <p>The best solution for us was: Use a SQL Database table as the "Q". Don't reinvent the wheel there, since you will make mistakes (locks). There is info out there on how to do it, it is very easy and we handled over 200K messages per 24H (with 60x10 = 600 concurrent reads and writes to the Q). That is in addition to the same SQL server handling the rest of the application stuff...</p> <p>Some reasons why MSMQ doesn't work:</p> <ol> <li><p>When you need to change the logic of the Q to not FIFO, but something like "the oldest RED message" or "the oldest BLUE message" you can;t do it. (I know what people will say, you can do it by having a RED Q and a BLUE Q.. .But what if the number/types of Ques is dynamic based on the way the application is administrated and changes daily?)</p></li> <li><p>It adds a point of failure and deployment nightmare (the Q is a point of failure and you need to deal with setting the right permissions on all boxes to read/write messages etc' in Enterprise software you pay in blood for these type of things). SQL server... all clients are writing/reading already from the DB, it is just one more table..</p></li> </ol> http://stackoverflow.com/questions/37579/queue-alternatives-to-msmq-on-windows/48184#48184 1 Answer by MotoWilliams for Queue alternatives to MSMQ on Windows? MotoWilliams 2008-09-07T05:51:05Z 2009-06-10T04:50:25Z <p>If cost isn't an issue (<em>there is also an Express SKU</em>) then take a look at the 800,000 pound gorilla. WebSphere MQ (MQ Series). It runs on practically any platform and supports so many different queue managers and messaging patterns it really isn't appropriate to list them here.</p> <ul> <li>IBM's WebSphere MQ Site: <a href="http://www.ibm.com/software/integration/wmq/" rel="nofollow">http://www.ibm.com/software/integration/wmq/</a></li> <li><strong>The</strong> MQ Support Forum: <a href="http://www.mqseries.net/phpBB2/index.php" rel="nofollow">http://www.mqseries.net/phpBB2/index.php</a></li> </ul> http://stackoverflow.com/questions/37579/queue-alternatives-to-msmq-on-windows/211590#211590 3 Answer by James Strachan for Queue alternatives to MSMQ on Windows? James Strachan 2008-10-17T09:52:28Z 2008-10-17T09:52:28Z <p>Why not use ActiveMQ? :)</p> http://stackoverflow.com/questions/37579/queue-alternatives-to-msmq-on-windows/237764#237764 0 Answer by firegrass for Queue alternatives to MSMQ on Windows? firegrass 2008-10-26T09:06:19Z 2008-10-26T09:06:19Z <p>If high availability is important Amazon SQS is worth looking at. There's not much additional overhead if messages come from different physical locations. Cheap and scalable!</p> http://stackoverflow.com/questions/37579/queue-alternatives-to-msmq-on-windows/390982#390982 4 Answer by RogerV for Queue alternatives to MSMQ on Windows? RogerV 2008-12-24T07:44:53Z 2008-12-24T07:44:53Z <p>I can't begin to say enough good things about Tibco EMS - an implementation of the Java JMS messaging spec. Tibco EMS has superb support for .NET clients - including Compact Framework .NET on WinCE. (They also have C client libraries too.)</p> <p>So if you're building a heterogeneous distributed application involving messaging code running on Windows, Unix (AIX/Solaris), Linux, or Mac OS X, then Tibco EMS is the ticket.</p> <p>Check out my article here:</p> <p><a href="http://www.javalobby.org/articles/distributed-jms/" rel="nofollow">Using JMS For Distributed Software Development</a></p> <p>I used to work at Microsoft and did some implementation with MSMQ while there. But you know, Microsoft just concerns itself with Windows. They depended on 3rd parties to provide MSMQ clients to other platforms. My encounter with Tibco EMS was a much better experience. It was very evident that Tibco understood messaging much more so than Microsoft. And Tibco put the effort into supporting diverse client bindings themselves. That is why they eventually changed the product name from Tibco JMS to Tibco EMS (Enterprise Messaging Service).</p> <p>And I did build heterogeneous software systems around Tibco EMS. Rolled C# .NET Winform clients interacting with Java/JBoss middle-tier via Tibco EMS messaging. (And also have WinCE industrial embedded computers that use the Compact Framework .NET Tibco client.)</p> <p><a href="http://vossnet.org/jms-links.html" rel="nofollow">Links To My JMS Writings</a></p>