<div class="IPBDescription">Braaaaaaaains</div> I'm having trouble getting my head around COM interop. Anyone with any knowledge of c# please reply here and I'll outline what I'm trying to achieve.
I'm implementing a log server in c#. The clients being logged are legacy C++ applications that cannot be implemented in c#.
I need a central queue somewhere of logs messages so they can be processed synchronously. And herein lies the problem. I'm having a devil of a time getting this queue implemented in c# so that it can service multiple connections from the clients.
Comments
I need a central queue somewhere of logs messages so they can be processed synchronously. And herein lies the problem. I'm having a devil of a time getting this queue implemented in c# so that it can service multiple connections from the clients.
It wasn't fun. :(
look into threads and semaphores.