vote up 0 vote down star

Is there an equivalent of JMS in .NET?

flag

3 Answers

vote up 2 vote down check

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:

http://msdn.microsoft.com/en-us/library/ms731089.aspx

link|flag
vote up 3 vote down

The best equivalent is actually using JMS in .NET. This is possible with Spring.NET.

link|flag
touché – LFSR Consulting Sep 25 at 21:34
However, would you recommend this - or would I be better off with MSMQ? – rajax Sep 25 at 21:45
1  
@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 Sep 26 at 10:41
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.