You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to CppWAMP
Hello everybody,
I'm using cppwamp library with bonefish router. I've tested it with one client (caller) and one service (callee) and it worked. but I need to have several clients (callers and callee) Is it possible to have several callees in the same session ? If it is possible. How can I configure the router (bonefish) to support multi callees ? Thanks.
Emile Cormier
unread,
May 26, 2016, 11:19:40 AM5/26/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to CppWAMP
Elyes,
The way WAMP normally works is that if you have multiple clients calling the same RPC, they all get routed to that one callee who registered the RPC.
If you want to perform load balancing, then you'll have to use the Shared Registration feature of WAMP. I don't know whether or not this is supported by Bonefish. In CppWAMP you can set the REGISTER.Options.invoke|string option manually using Rpc::withOption(key, value) (see http://ecorm.github.io/cppwamp/doc/classwamp_1_1_options.html).