general-purpose binary protocols - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T12:48:17Z http://stackoverflow.com/feeds/question/352433 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/352433/general-purpose-binary-protocols 3 general-purpose binary protocols soulmerge 2008-12-09T11:24:17Z 2009-04-02T20:50:44Z <p>I'm trying to find a suitable protocol middleware for my next distributed application. I've found several specifications in the last few days and was wondering if I missed an important one? It should be a binary protocol, support RPCs and optionally have open-source implementations in different languages. Here's the list of protocols I found:</p> <ul> <li>CORBA</li> <li>ICE</li> <li>AMQP</li> <li>Thrift</li> </ul> <p>And this is the list of dismissed protocols:</p> <ul> <li>XML based protocols because they are text based (XML-RCP, SOAP, hand-rolled, etc.) </li> <li>Protocol Buffers (Closed Source)</li> <li>COM (Windows-only)</li> </ul> http://stackoverflow.com/questions/352433/general-purpose-binary-protocols/352437#352437 7 Answer by unwind for general-purpose binary protocols unwind 2008-12-09T11:26:19Z 2008-12-09T11:26:19Z <p>I don't think <a href="http://code.google.com/p/protobuf/" rel="nofollow">Protocol Buffers</a> are closed-source. The page implies differently, and there are source downloads.</p> http://stackoverflow.com/questions/352433/general-purpose-binary-protocols/352441#352441 11 Answer by Jon Skeet for general-purpose binary protocols Jon Skeet 2008-12-09T11:28:25Z 2009-01-10T19:44:49Z <p>The Protocol Buffers project <em>definitely</em> isn't closed source.</p> <p>Which language/platform are you interested in?</p> <ul> <li>For Java, C++ and Python there's the <a href="http://code.google.com/apis/protocolbuffers/" rel="nofollow">Google code</a>.</li> <li>For C# there are at least three projects (including <a href="http://github.com/jskeet/dotnet-protobufs/tree" rel="nofollow">mine</a> or <a href="http://code.google.com/p/protobuf-net/" rel="nofollow">Marc's</a>)</li> <li>For other languages/platforms, see the <a href="http://code.google.com/p/protobuf/wiki/OtherLanguages" rel="nofollow">relevant wiki page</a></li> </ul> <p>Note that although there's <em>stub</em> RPC support in Protocol Buffers, Google hasn't released its actual RPC layer, so you'd have to provide your own. Given that basically you'd pass a request message and return a response message, it's not <em>that</em> hard to layer it over existing protocols (e.g. HTTP POST).</p> http://stackoverflow.com/questions/352433/general-purpose-binary-protocols/352444#352444 1 Answer by Alnitak for general-purpose binary protocols Alnitak 2008-12-09T11:30:05Z 2008-12-09T11:30:05Z <p>You could look at <a href="http://en.wikipedia.org/wiki/ASN.1" rel="nofollow">ASN.1</a>.</p> <p>It's used for encoding and transmitting binary data in many other protocols (e.g. SNMP, LDAP) although ASN.1 does not itself define a transport protocol.</p> http://stackoverflow.com/questions/352433/general-purpose-binary-protocols/352507#352507 3 Answer by Joachim Sauer for general-purpose binary protocols Joachim Sauer 2008-12-09T11:51:20Z 2008-12-09T11:51:20Z <p>Quite possibly not the best candidate, but for completeness' sake I'd like to add that there's a <a href="http://www.w3.org/XML/Binary/" rel="nofollow">binary encoding for XML</a>.</p> http://stackoverflow.com/questions/352433/general-purpose-binary-protocols/398872#398872 3 Answer by opletayev for general-purpose binary protocols opletayev 2008-12-29T22:15:35Z 2008-12-29T22:15:35Z <p>I would suggest that you reconsider Google Protocol Buffers. There are many open source implementations for all major platforms, including C++/Java/Python one published by Google itself.</p> <p>As it was mention by Jon Skeet up above, PB spec does not define RPC model but it's extremely easy to define your own RPC using PB.</p> <p>Alternatively, you could take a look at ASN.1. There is a ton of apps that use ASN.1. </p> http://stackoverflow.com/questions/352433/general-purpose-binary-protocols/430828#430828 0 Answer by alexis for general-purpose binary protocols alexis 2009-01-10T10:19:52Z 2009-01-10T10:19:52Z <p>I would recommend trying out RabbitMQ AMQP, and using Protocol Buffers, XML, or some other data format such as JSON, to taste. In addition to being relatively simple and easy to get started with, this lets you mix and match RPC and asynchronous pubsub styles, and has a good spread across languages, protocols and platforms. But it may not be a good fit for your problem -- it all depends what you are trying to do! Cheers, alexis</p> http://stackoverflow.com/questions/352433/general-purpose-binary-protocols/430866#430866 0 Answer by Darius Bacon for general-purpose binary protocols Darius Bacon 2009-01-10T11:22:43Z 2009-01-10T11:22:43Z <p>Joe Armstrong's <a href="http://www.sics.se/~joe/ubf/site/home.html" rel="nofollow">UBF</a> doesn't seem to have caught on, but it satisfies your requirements with a tasteful design.</p> http://stackoverflow.com/questions/352433/general-purpose-binary-protocols/711576#711576 0 Answer by Blair Zajac for general-purpose binary protocols Blair Zajac 2009-04-02T20:50:44Z 2009-04-02T20:50:44Z <p>There is a patch from ZeroC to Ice to support Google Protocol Buffers natively.</p> <p><a href="http://www.zeroc.com/labs/protobuf/" rel="nofollow">http://www.zeroc.com/labs/protobuf/</a></p>