out-of-process COM server

  • Thread starter Thread starter Blues
  • Start date Start date
B

Blues

Is it possible to create a COM server in an exe on pocket pc 2003 or
CE.Net 4.2?

We have a ever running application, and I want to provide APIs to
control this application from other applications. I think providing a
COM wrapper is a nature way.

Another way is to use msg queue to do the inter-process communication,
but that's not a nature way, we have to create a lot of msg types, and
parse a lot of parameters....
 
Does your platform have DCOM? Because if it doesn't, there goes your
out-of-proc server.
MessageQueue is a more realistic approach. And then you have a TCP channel -
kind of like remoting, only done manually.
 
Back
Top