I have a router, a server and multiple clients. The server registers methods in the router, and the clients successfully call the methods and get the result. In some cases, I need the server to ask a specific client something. I already have the sessionId
using WampInvocationContext.Current.InvocationDetails
, but I have no idea how the clients need to register their methods, nor do I know how to call them from the server.
I looked in the documentation, but had no luck. Does wamp-proto actually support such a thing? If so, got any pointers?