Hi all,
I will have to build a method in C++ for a COM plus object (client),
I will have a server (built in C#) running all the time and waiting for
messages via IPC.
Unfortunaly I'm new to the world of IPC and I would like to learn
what's the best method and architecture when we have two different
technologies.
I only require to pass a set of strings or a array of strings.
Best Regards and thank you for the help,
Luís Miguel Pinho
Eugene Mayevski - 14 Sep 2005 11:57 GMT
Hello!
You wrote on 8 Sep 2005 10:10:14 -0700:
l> I will have to build a method in C++ for a COM plus object (client),
l> I will have a server (built in C#) running all the time and waiting for
l> messages via IPC.
l> Unfortunaly I'm new to the world of IPC and I would like to learn
l> what's the best method and architecture when we have two different
l> technologies.
You can use memory-mapped files for your task. Alternatively, take a look at
MsgConnect ( http://www.eldos.com/msgconnect/ )
With best regards,
Eugene Mayevski
Chad Z. Hower aka Kudzu - 14 Sep 2005 19:26 GMT
> Eugene Mayevski
Wow - the whole crew is moving over here. :)
--
Chad Z. Hower (a.k.a. Kudzu)
"Programming is an art form that fights back"
Stuff: http://www.KudzuWorld.com
Blogs: http://www.KudzuWorld.com/blogs
lpinho@gmail.com - 15 Sep 2005 18:46 GMT
Thanks, I will try to use it
Best Regards,
Luís Miguel Pinho