msgpack-rpc-cli
msgpack-rpc-cli copied to clipboard
Client can't find methods on Server implementation
I am trying to expose the methods of my server implementation, but it is not working. I don't really know what I am missing.
This is my question opened on StackOverflow, I would appreciate a lot some help.
Thank you very much!!
http://stackoverflow.com/questions/34729557/messagepack-rpc-c-sharp-server-side
Sorry for poor documentation and missing samples...
You can solve this with putting following lines:
// Configure using "def" for ServiceTypeLocator
configuration.ServiceTypeLocatorProvider =s => def;
// Prevents method name should not contain version number.
configuration.UseFullMethodName = false;
Thank you very much. http://stackoverflow.com/questions/34729557/messagepack-rpc-c-sharp-server-side