Dear List,
I'm trying to set up an OSC communication on a Windows 10 enterprise computer
The client program is written in C# using the Ventuz.OSC and/or Bespoke library.
We use SC 3.8 the firewall is off.
We would expect to see messages come in, if we send from the C# program to port 57120 on the 127.0.0.1
var writer = new UDPWriter("127.0.0.1", 57120);
writer.Send(new OSCElement("/data", 500);
and setup in SuperCollider:
n = NetAddr("127.0.0.1", NetAddr.langPort); // local machine
OSCFunc.newMatching({|msg, time, addr, recvPort| msg.postln; }, '/data', n); // path matching.
If you know of any OSC library that you would recommend any .net solution is good