Is there an equivalent of JMS in .NET?
+2
A:
The best equivalent to JMS in .NET is probably the combination of WCF with the MSMQ binding. MSMQ is a pub/sub message router, and with WCF wrapped around it, you get a nice, efficient little enterprise eventing service. The following article discusses how to manage message queues with WCF:
jrista
2009-09-25 21:23:31
+1
A:
You might want to have a look at Microsoft Message Queuing or MSMQ for short. I'm similar, but definitely not equivalent.
It's an easy system to work with and there are a ton of resources on the web for it.
Gavin Miller
2009-09-25 21:24:34
+5
A:
The best equivalent is actually using JMS in .NET. This is possible with Spring.NET.
RichardOD
2009-09-25 21:29:51
touché
Gavin Miller
2009-09-25 21:34:59
However, would you recommend this - or would I be better off with MSMQ?
rajax
2009-09-25 21:45:18
@Rajax- I'd only recommend this if you were going to integrate with Java JMS components. I thought I'd mention it so it gives you something to think about and is different from the other answers.
RichardOD
2009-09-26 10:41:56