The relationship between Python and WCF

I have several servers (200-300) in Python 2.4 calling a WCF service using REST. I would like to be able to notify these servers of some changes that have occurred in the WCF service, instead of asking all the Python servers to make some pools to detect such changes.

How can I do such a broadcast notification to avoid merging?

Thanks Sylvain

+3
source share
1 answer

The message bus seems to be selected correctly. Maybe you should take a look at ZeroMQ . It is cross-platform and has bindings in different languages.

0
source

All Articles