Hi,
Should the onMessage event handler be called whenever I publish using 'EventPublisher.ref.tell' ? The socket is open.
It isn't called. What else is the link between the listening socket and the publisher ?
connectWebSocket = () ->
websocket = new WebSocket $("#url").val()
console.log("connectWebSocket")
websocket.onmessage = (evt) ->
json = JSON.parse(evt.data)
Thanks,
Mohan