is .NET using COM/COM+ technologies?

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

I want to know what technologies make distributed computing possible in
..NET? Is .NET framework CLR using COM and COM+ technologies?

Please advise. thanks!!
 
In some instances, yes. In others, no. .NET uses RPC as well as COM/COM+
technologies.

Mike Ober.
 
The CLR is just a set of byte-code operations so has nothing to do with COM.
Some of the framework does use COM and you can create COM components.
Distributed computing and be done through many ways depending on your
requirments. One common way might be to use .NET Remoting.
 
Hello Steve,

Behind .NET or with .NET? it's a bit different things, because behind the
..net c++ and com/dcom wide used.
But for .NET they diminish that stuff and gave us more highlevel tools, such
as EnterpriseServices, .NET Remoting

S> I want to know what technologies make distributed computing possible
S> in .NET? Is .NET framework CLR using COM and COM+ technologies?
S>
S> Please advise. thanks!!
S>
---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 
Steve said:
I want to know what technologies make distributed computing possible
in .NET? Is .NET framework CLR using COM and COM+ technologies?

..NET remoting does not use COM. The Enterprise Services classes are a
very thin wapper around COM+.

Richard
 
Back
Top