Hi all,
I'm new to WebSockets and even more to WAMP, but I thinks it's what I need for my project.
Simplifying, my project is one (for now) Android device communicating with a C# application. I need
the RPC functionnality and the publish/subscribe too.
There wasn't that many options available for c# and Android (WampSharp and Autobahn).
I'm just starting to explore these two solutions. There's a few things that I would like to see with
you guys that have more experience on the subject.
So first of all, great work on WampSharp, it's looking good, but there are some weird examples
on the github wiki page (maybe I find them weird due too lack of experience ?)
https://github.com/Code-Sharp/WampSharp/wiki/Getting-Started-with-CalleeThe callee example - one off the first one I tried. Both client and router register callee:
Task<IAsyncDisposable> registrationTask = realm.Services.RegisterCallee(instance);
Anyway after looking at the code a bit and trying I managed to get an RPC method executed on the router
from the client.
There is another thing, I see there's a difference between the reflection based method and the raw method.
Does this mean that you can only use reflection on the C# end when your clients and router are C# ? Or can
you for example from the Autobahn Android client call C# RPC methods that use reflection ?
Also for my project I would like to be able to get the list of Android devices connected to the C# application,
would this be possible ? Like ask the router for the connected clients ?
Thanks for you time.