I've got a project in which I need to send UDP messages to a multicast channel. I see that BrightSign has a datagram socket object. There are code examples for receiving messages but nothing for sending to compare against.
I tried using it in the following manner. But I am not receiving any messages in my listener. What am I doing wrong?
var socket = null;
socket = new BSDatagramSocket();
socket.JoinMulticastGroup("224.2.3.4");
function send( message) {
socket.SendTo("224.2.3.4",7000, message);
}
send("this is a test message");