[zeromq-dev] How to get data a ZMQ_PUB service?

2018-02-12 Thread Bernardo Augusto GarcĂ­a Loaiza
Can I publisher service receive data from an external source and send them to the subscribers? In the wuserver.cpp sample the data are generated from the same script ... Can I write a ZMQ_PUBLISHER entity which receive data from external data source / appli

Re: [zeromq-dev] How to get data a ZMQ_PUB service?

2018-02-12 Thread Justin Karneges
ZMQ programs may only send dummy data that has originated from within the process. For example if your program obtains data by reading a file or performing a network operation unrelated to zmq, and attempts to send that data over a zmq socket, your computer will promptly catch fire. But I have only