Protobuf-net and rpc by tcp

I am looking for rpc over a tcp implementation that uses protobuf-net (or any other .net implementation of protobuf).

Any suggestions?

+3
source share
2 answers

protobuf (with any implementation) is not an RPC stack; This is a sterilization stack. However, you can use WCF to provide RPC, but hook protobuf-net as a serialization layer inside WCF . What to do?

I have a custom RPC layer using http, but I haven’t implemented it for TCP, and I haven’t looked at callbacks. WCF provides these built-in functions, so maybe it's worth a look?

+3

RPC, protobuf-net, protobuf-remote. ++ ( ), # ( protobuf-net). TCP.

#- ++ Proto.

+1

Source: https://habr.com/ru/post/1753878/


All Articles