.Net Remoting

  • Thread starter Thread starter Jehanzeb Musani
  • Start date Start date
J

Jehanzeb Musani

Hi
I have written an Enterprise Component (COM+) in .NET
using C#. I have accessed those components from the
client running on the same machine.

Now, what I want to know is that how I can access the
same components from other machines on the nework. What
steps have to be taken to acces the same components from
other machines on the network.

Help in form of code or links will be highly appreciated.

Thanks in advance,
Jehanzeb
 
Thanks for it.

Basically, Enterprise Components are also elgilble for
Remoting as one has to derive from "ServicedComponent"
class to make a class an Enterprise Component
and "ServicedComponent" class derives from "MarshalByRef"
which make that component also remotely accessible.

Now, if i designed the client as prescribed in the
article mentioned by you, then whether the components
will run in COM+ context or not, or I have to generate
some sort of proxy for clints (using COM+ Export option)
as we are used to do in pre .NET days.

Thanks in advance,
Jehanzeb Musani
 
Back
Top