An easy way to do pub/sub with simple HTTP requests.
Subscribing: curl -d 'sub <subname>' <server address>:<port>
Publishing: curl -d 'pub <subname> <value>' <server address>:<port>
<subname> can be any character except a space. <value> can be any character.
(I have a sample server set up at http://cold-warrior-3505.herokuapp.com:80 if you want to play around with it)
- If you're just a client, install curl. You're now done.
- If you're a server
Brian Picciano