I have two servers that talk to each other using DCOM interfaces. Although I probably should be using connection point for communication in one of the directions, I do not want to use connection points. Connection in both direction is done through regular com interfaces. Here is my problem:
1. I start one of the servers (say server A)
2. server A calls a method on the server B. The server B gets launched dynamically through COM.
3. Server B calls a method on the server A, another instance of server A gets invoked through COM.
I want the same instance of server A, that I started in stage 1 above, to receive calls from B (i.e. I want only on instance of A running, not two). Does anybody knows how to do this?
Thanks,
Ali
1. I start one of the servers (say server A)
2. server A calls a method on the server B. The server B gets launched dynamically through COM.
3. Server B calls a method on the server A, another instance of server A gets invoked through COM.
I want the same instance of server A, that I started in stage 1 above, to receive calls from B (i.e. I want only on instance of A running, not two). Does anybody knows how to do this?
Thanks,
Ali