.NET Remoting to COM

  • Thread starter Thread starter Eric Therrien
  • Start date Start date
E

Eric Therrien

Hello,

I have a .NET application where I want to be able to access COM objects on a
remote server (theses objects are the base for a web appliation we are
running).

I've been looking on the net for an easy example, or at the very least some
documentation that would make tell me how to do it (if at all possible). So
if anyone has any idea on how this could (or coudn't) be done, or any cue on
where to look and for what, I would strongly appreciate.

Many thank's in advance.


Eric
 
Eric said:
Hello,

I have a .NET application where I want to be able to access COM objects on a
remote server (theses objects are the base for a web appliation we are
running).

I've been looking on the net for an easy example, or at the very least some
documentation that would make tell me how to do it (if at all possible). So
if anyone has any idea on how this could (or coudn't) be done, or any cue on
where to look and for what, I would strongly appreciate.

Many thank's in advance.


Eric

You'll have to create a proxy (use COM+ wizard to create an MSI) for
your com+ object, install the proxy, then use interop to generate a CCW
(Com callable wrapper) to talk to the proxy, which will RPC to the COM+
server.
 
Back
Top