general-purpose binary protocols - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T12:48:17Zhttp://stackoverflow.com/feeds/question/352433http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/352433/general-purpose-binary-protocols3general-purpose binary protocolssoulmerge2008-12-09T11:24:17Z2009-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#3524377Answer by unwind for general-purpose binary protocolsunwind2008-12-09T11:26:19Z2008-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#35244111Answer by Jon Skeet for general-purpose binary protocolsJon Skeet2008-12-09T11:28:25Z2009-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#3524441Answer by Alnitak for general-purpose binary protocolsAlnitak2008-12-09T11:30:05Z2008-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#3525073Answer by Joachim Sauer for general-purpose binary protocolsJoachim Sauer2008-12-09T11:51:20Z2008-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#3988723Answer by opletayev for general-purpose binary protocolsopletayev2008-12-29T22:15:35Z2008-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#4308280Answer by alexis for general-purpose binary protocolsalexis2009-01-10T10:19:52Z2009-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#4308660Answer by Darius Bacon for general-purpose binary protocolsDarius Bacon2009-01-10T11:22:43Z2009-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#7115760Answer by Blair Zajac for general-purpose binary protocolsBlair Zajac2009-04-02T20:50:44Z2009-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>