views:

98

answers:

1

I have two applications, and one is keeping sending live images to the other and it need to be long-running.

  1. WCF - is it suitable?
  2. TCP/IP directly?
  3. Service bus, NServiceBus?

Is there any better alternative for this communication?

+1  A: 

NServiceBus is indeed suitable for that, as it sounds like you would like non-blocking communication between them. If your images are larger than 3-4 MB, you may need to do some additional steps to get it working with NServiceBus as the built-in MSMQ transport doesn't support messages larger than 4MB.

Udi Dahan
Thanks a lot for your info
Benny