JMS equivalent in .Net

Posted by rauts on Stack Overflow See other posts from Stack Overflow or by rauts
Published on 2009-10-13T15:01:33Z Indexed on 2010/04/10 12:13 UTC
Read the original article Hit count: 533

Filed under:
|
|
|

Hi All,

I am trying to make an common abstract interface over the messaging infrastructure in our company. The design goal is to 2 fold. 1 is to hide the complexity of programming from the developers (i know its not very complex but still simplify it further) and 2 is to make the developers independent of the vendor specific messaging infrastructure (i.e. it can be MQSeries or EMS or MSMQ).

The very common option is using the WCF layer over the messaging infrastructure. Use the MQSeries Custom channel for WCF or use EMS custom channle for WCF. But both are ruled out due to lack of proper version of MQSeries and EMS.

Can someone please suggest what are the possible solutions to this problem. One which i can think of the to have a custom wrapper like JMS. Has anyone ever tried something similar before. Any help would be fantastic.

by the way, i am trying to create this wrapper in C# 3.5.

Regards

© Stack Overflow or respective owner

Related posts about messaging

Related posts about c#