What is the best way to expose the grains through web sockets? I mean in terms of architecture.
Ideally I want to call the grain methods from frontend (smart mapping with SignalR maybe).
Anyone has experience with this?
Are you familiar with Orleans.Http?
It isn't using web sockets but it's probably much easier to just use that, than to try to come up with your own protocol over web sockets. If you have to use web sockets for some reason, that project is still probably a good approach to emulate.
+1
Most helpful comment
Are you familiar with Orleans.Http?
It isn't using web sockets but it's probably much easier to just use that, than to try to come up with your own protocol over web sockets. If you have to use web sockets for some reason, that project is still probably a good approach to emulate.