Any experiences with C# and ZeroC ICE [duplicate]
Asked Answered
I

2

8

http://www.zeroc.com/

I hear it's much better at cross platform interop and with performance.

Impulsion answered 12/5, 2009 at 13:33 Comment(1)
You might be interested in this question: #100048Cide
A
7

We are using ZeroC Ice in our mixed-language projects. So far we write in C++, Python and C#. Ice is very easy to use, scalable and extensible. The only inconvenience is that you have to write plugins and object factories for some languages separately. For example, a transport adapter plugin for C++ cannot be reused in C# (but works for Python though). Our software (its C++ part) is performance critical and Ice is giving very good results. The very yummy features are updating old data structures (you can modify old classes stored in the database, for example, and add new field to them) and on-the-fly persistence (Freeze service). Highly recommended.

Algebraic answered 9/9, 2010 at 15:45 Comment(0)
D
1

I don't know about zeroc, but another option is "protocol buffers" - this is Google's open source binary serialization format, designed for portability (between platforms and implementations), performance (binary, cheap to read/write) and extensibility.

There is not, however, a standard RPC stack defined by protocol buffers; a handful of RPC stacks are springing up in the community, though.

Java, C++ and php are in the Google release, and there are various community versions available, including C#.

Downey answered 12/5, 2009 at 13:39 Comment(3)
But you're not biased at all ;)Habiliment
@Joel - you'll notice that I deliberately didn't mention my version... even if it is free, versatile, follows .NET idioms and can work on your existing code...Downey
Ice now natively supports Google Protocol Buffers in the 3.3.1 release, so one can have a standard RPC and serialization together.Interrex

© 2022 - 2024 — McMap. All rights reserved.