The Protocol Buffers project definitely isn't closed source.
Which language/platform are you interested in?
- For Java, C++ and Python there's the Google code.
- For C# there are at least three projects (including mine or Marc's)
- For other languages/platforms, see the relevant wiki page
Note that although there's stub 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 that hard to layer it over existing protocols (e.g. HTTP POST).
