msgpack-rpc-cli icon indicating copy to clipboard operation
msgpack-rpc-cli copied to clipboard

Client can't find methods on Server implementation

Open marianeppinheiro opened this issue 10 years ago • 2 comments

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

marianeppinheiro avatar Jan 13 '16 11:01 marianeppinheiro

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;

yfakariya avatar Jan 18 '16 11:01 yfakariya

Thank you very much. http://stackoverflow.com/questions/34729557/messagepack-rpc-c-sharp-server-side

marianeppinheiro avatar Jan 25 '16 11:01 marianeppinheiro