User-1932057868 posted
Hi there
I have some physical devices (Arduino board) communicating with azure server via websocket
on azure webapi server i implemented websocket using Microsoft.WebSockets but I would like to switch to SignalR, but i cannot change my clients (they are using an arduino core websocket implementation)
the fact is that server sends message to client as well as receives messages from client
that means that I don't have any html files (jquery etc) on server, it's a webapi, I need to do everything on server side (c#)
on server side , I need to hook the OnMessage from client, and I need to SendMessage to client
What's the correct strategy with signalR?
I found so much material but all related to jquery...
thanks