Let's say I have an existing application written using Visual Studio 6 (VB 6, InterDev 6) and this application utilizes Windows 2000 COM+ transaction services. How would you approach migrating this application to .NET

Showing Answers 1 - 5 of 5 Answers

imran

  • Sep 29th, 2005
 

bassically .Net is not use for developing the com components.

Ravi

  • Oct 1st, 2005
 

COM components are accessed from the .NET runtime via a Runtime Callable Wrapper (RCW). This wrapper turns the COM interfaces exposed by the COM component into .NET-compatible interfaces

  Was this answer useful?  Yes

anugrah

  • May 21st, 2007
 

All you need to do is to add the reference of COM dll ....

Behind the curtain this will automatically create a file .interop.dll and your can now directly use the methods exposed by the COM dll in your C# code.

You need to take care that your actual COM dll is registered and the Interop dll also ships with your application i.e. both dlls are required. 

Thanks and Regards
Atreya, Anugrah

deepak

  • Aug 26th, 2007
 

Use InteropService names in .Net to use COM+ like services in your .Net code.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.