message passing bw 2 application
-
I want to trigger a started NT service on some event. i.e a service should activate on that event and perform its funtionality. The invoking event should be passed from another VC application. Can anybody tell me how can I do it. (I want something like as Message Passing within different applications) Please guide. Thanks in advance Aasher
-
I want to trigger a started NT service on some event. i.e a service should activate on that event and perform its funtionality. The invoking event should be passed from another VC application. Can anybody tell me how can I do it. (I want something like as Message Passing within different applications) Please guide. Thanks in advance Aasher
"I want to trigger a started NT service on some event. i.e a service should activate on that event and perform its funtionality. The invoking event should be passed from another VC application. Can anybody tell me how can I do it. (I want something like as Message Passing within different applications)" You might try having a look at my DCOM programming tutorial, which shows you, step-by-step, how to do this with DCOM, where the server program (which has the events and the functionality) is a Windows NT Service. The tutorial starts with Step 1, and then Back and Next links are provided to help you move through the steps. Hope this helps :)
-
I want to trigger a started NT service on some event. i.e a service should activate on that event and perform its funtionality. The invoking event should be passed from another VC application. Can anybody tell me how can I do it. (I want something like as Message Passing within different applications) Please guide. Thanks in advance Aasher
If you get the book "RPC for Windows NT" and read and understand it, then you can code your own special interface into the NT service as the RPC server and into your VC app as the RPC client. I do this a lot using the Local RPC and it works great.