0

what are my options for reliable multicast in c# /.Net 3.5?

I don’t want to use MSMQ.

I am open to commercial as well as open source options.

Thanks

Sean
  • 60,939
  • 11
  • 97
  • 136

5 Answers5

3

Take a look at EmCaster

Fusspawn
  • 1,405
  • 12
  • 19
2

http://www.29west.com/ claims to be the lowest latency reliable multicast solution available. I have not verified this claim, but in talking to them, it seems that their biggest competition is not some other vendor, but in house developemnt. Why not just set up your own multicast group, and use it directly? Chapter 21 of "Unix Network Programming Volume 1" describes how to do this.

bobmcn
  • 1,027
  • 9
  • 23
  • Yeah, they also claim an oxymoron of remote/local DMA too. It's just a socket and most hardware these days bypasses the CPU on modern OS-es plus interfaces/drivers are far smarter. But big corps love to buy into simple socket servers for decades, amazing how far marketing a box of matches can go. Completely agree with direct use and upvoting for that part; but someone sooner or later will hit on alarmingly spreading 30east LBM (largescale blx marketing) as if network is not the bottleneck. – Majkara Tito 0 secs ago – rama-jka toti May 20 '09 at 18:00
  • One transport lbm supports is DMA over Infiniband. It's not an oxymoron in that context. – Chuu Dec 04 '13 at 17:20
1

The best one I've used, after evaluating a bunch was Mesongo RMF - it had a really clean API and good monitoring tools.

Rob
  • 41
  • 3
1

ActiveMQ is an excellent product by the Apache organization. There's bindings for lots of languages, including C#.

In the commercial world Tibco EMS is a good choice. Its got bindings for C# and Java.

Sean
  • 60,939
  • 11
  • 97
  • 136
  • Tibco EMS is the best I've worked with. Active MQ is ok but doesn't actually use Multicasting. If you like you can roll your own rather easily. I have the code on my site here: http://jarloo.com/code/networking/c-udp-multicasting-tutorial/ – Kelly Feb 15 '11 at 02:41
0

The pragmatic variant, PGM, it's in your Windows image, look for it on say server 2003, even XP and friends.. there are socket options for it (Rdm or similar).

rama-jka toti
  • 1,404
  • 10
  • 16