Have you tried to remove cached/compiled files and recompile all?
SrY7881514751 activity
SrY7881514751 commented on I receive the byte[] array (with loop until get all bytes of message)
var buffer = new ArraySegment(new byte[2048]);
result = await ws.ReceiveAsync(buffer, CancellationToken.None);
Then I get the utf8 string
using var reader = new StreamReader(ms, Encoding.UTF8);
var message = await reader.... Read more
This is the result of deserialize, I doubt the encoding is wrong... The question is how to decode the "data" field or make sense to elemnt 3 and 4 of the array...
SrY7881514751 commented on To which url are you building the connection?
To local ip where node is executing with port 5000, the standard configured... http://192.168.0.13:5000 and path is /events/push
SrY7881514751 commented on Like building your own exchange or using the maiar exchange?
Mmm I think that the easy and fatest way is using miaiar, isnt it?