Connecting and listen to a socket
Hi, I'm Jmp 17 user.I have a python script that is a server that keep sending short messages every 3 sec. I'm trying to connect and receive these numbers in jmp. I used this HTTP Request example as reference, but the callbackfn never get called. callbackfn = function( {x},
write ("Message Recieved");
);
//Create a socket
con = Socket();
//Use a specific port on this computer
con << Bind( "loc
...