.NET and COM

  • Thread starter Thread starter J. Marcelo Barbieri
  • Start date Start date
J

J. Marcelo Barbieri

a.. When creating COM component with .NET, what would be the limitations?
Can I use try catch, constructors, destructors, etc? When running the
components on COM+, I would need .NET Framework installed on the Application
Server? Right?
b.. Why there's no COM template in C# as I have in VB.NET? What do I have
to do to obtain the same result when using the template?
thanks a lot.
 
COM is unmanage and they are not understand by .NET without a callable
wapper.. I wonder how some one going to build a COM object using .NET/C#

But .NET has Web Services

Nirosh.
 
You can simply build your component as you would like in whatever .NET
language. You can then expose it as a COM object (more or less) using
regasm.exe.
 
Back
Top