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

MessagePack for CLI (.NET/Mono) RPC

Results 5 msgpack-rpc-cli issues
Sort by recently updated
recently updated
newest added

I am trying to call an RPC function bar() that returns a value of type `Foo`. `Foo` is an identical class on both the server and client. The dynamic proxy...

I tried a server implementations like this: ``` python import msgpackrpc class TestServer(object): def Add(self, a, b): print("Add({}, {}) called".format(a, b)) return a + b def Mul(self, a, b): print("Mul({},...

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...

Fix FinishReceiving not being called in normal flow of OnReceived Tweak FinishReceiving to not do ReturnTransport (it pollutes transport pool) Not changing version, cause unsure, how to (Ref issue #4)

Hi, is it possible to use this framework but not use the default MsgPack object serialization? I use the MsgPack c# bindings but use for all objects a customer serializer....