I’m looking for a rpc over tcp implementation that uses protobuf-net (or any other .net implementation of protobuf).
Any suggestions?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
protobuf (under any implementation) is not an RPC stack; it is a serialization stack. You can, however, use WCF to provide the RPC, but hook protobuf-net as the serialization layer inside WCF. That do?
I have a bespoke RPC layer using http, but I haven’t implemented one for TCP, and I haven’t looked at callbacks. WCF provides these built in, so maybe that is worth looking at?