Collocation question on .NET

in Help Center
This is probably a stupid question, but here goes:
Can I collocate a servant written in Visual C++ (I believe "unmanaged code" is the term in .NET) with a client written in C#, or would both have to be C# or C++? Can I create an Ice service in .NET "managed C++"?
Thanks,
Mark
Can I collocate a servant written in Visual C++ (I believe "unmanaged code" is the term in .NET) with a client written in C#, or would both have to be C# or C++? Can I create an Ice service in .NET "managed C++"?
Thanks,
Mark
0
Comments
If you mean share the same process space, it's most likely feasible; but you won't be able to share the same communicator object, to take advantage of collocation optimization.
We don't support managed C++, only C# and unmanaged C++. I believe a new (and significantly different) version of managed C++ is in the works ... supporting the existing managed C++ does not make much sense.
Cheers,
Bernard
Cheers,
Michi.