is .NET using COM/COM+ technologies?

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!!
 
M

Michael D. Ober

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

Mike Ober.
 
P

Peter Rilling

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.
 
M

Michael Nemtsev

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
 
R

Richard Grimes [MVP]

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top