I'm not sure that you'll find another service bus that allows reading remote
queues. I could be wrong. Last time I looked reading private queues on
remote machines for MSMQ was discouraged, maybe that's changed.

It sounds like you're wanting your encoders to be load balanced. The bus
does have support for this.

The way I'm seeing meeting your requirements unless I've overlooked
something.

web application - configured with a message owner of a load balancer
endpoint.

bus.Send(new Task());


load balancer endpoint receives message and is aware of endpoints ready for
work.

encoding service - receives message given to it by load balancer

finishes encoding
bus.Reply(new EncodingTaskComplete());

-- 
You received this message because you are subscribed to the Google Groups 
"Rhino Tools Dev" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rhino-tools-dev?hl=en.

Reply via email to