C# communication between processes.
        Posted  
        
            by Zach
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Zach
        
        
        
        Published on 2010-03-14T18:27:08Z
        Indexed on 
            2010/03/14
            18:45 UTC
        
        
        Read the original article
        Hit count: 231
        
c#
|servicebus
I'm working with an application, and I am able to make C# scripts to run in this environment. I can import DLLs of any kind into this environment. My problem is that I'd like to enable communication between these scripts. As the environment is controlled and I have no access to the source code of the application, I'm at a loss as to how to do this.
Things I've tried:
- File I/O: Just writing the messages that I would like each to read in .txt files and having the other read it. Problem is that I need this scripts to run quite quickly and that took up too much time. 
- nServiceBus: I tried this, but I just couldn't get it to work in the environment that I'm dealing with. I'm not saying it can't be done, just that I can't get it done. 
Does anyone know of a simple way to do this, that is also pretty fast?
© Stack Overflow or respective owner