I have a C++.NET app and a C#.NET app. I would like them to communicate via shared memory.
How is it possible in .NET version 2.0 ?
Mainly want to share a queue object.
|
I have a C++.NET app and a C#.NET app. I would like them to communicate via shared memory. How is it possible in .NET version 2.0 ? Mainly want to share a queue object. |
||||
|
|
|
Update: Hey, here's a page I just found with a compleate implmentation. Using C++/CLI, it's quite easy to setup shared memory as per normal C++ API (C++/CLI being able to interact with the managed and native HEAP/memory references). The UnmanagedMemoryStream can then be used to expose a Stream object to C#. I did not attach the .h file, but you can infer the layout of the pmapped native typedef fairly easially ;). You may also want to evaluate the possible use of a BufferedStream depending on your reader/writer use case. And the code is from a project which I do not use any more so I can not remember the status of it's bug regression. Here's the C++/CLI class which establishes a file mapping and exposes an UnmanagedMemoryStream;
Here's CLoseMap at least... I just found it... it was not compiled with /CLR
|
||||
|
|
There are several options for your applications to communicate. The most popular are Remoting and Pipes. There are several examples for both and before you choose one you should consider the pros and cons such as portability. Here are some useful links: Inter-Process Communication in .NET Using Named Pipes, Part 1 Inter-Process Communication in .NET Using Named Pipes, Part 2 |
|||||
|
|
Is shared memory the only option? There are many ways for two .NET processes to communicate. Some of them are:
|
|||
|
|
|
You also have an alternative to C++/CLI as importing win32 functions in your C# app:
|
|||
|
|
|
I suppose .NET v2.0 does not have in-built support for shared memory. At most we can PInvoke the CreateFileMapping and MapViewOfFile APIs. In my scenario the IPC must take place on a single machine. So pipes is the fastest option as of now. Thanks for the answers |
|||
|
|