Click here to Skip to main content
6,634,665 members and growing! (20,202 online)
Email Password   helpLost your password?
Languages » C# » General     Intermediate

Accessing COM+ component using C#

By Imtiaz Alam

This article provides a step by step explanation on how to access COM+ applications using C#.
C#, Windows, .NET 1.0, Visual Studio, Dev
Posted:30 Oct 2001
Views:80,881
Bookmarked:20 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
21 votes for this article.
Popularity: 5.19 Rating: 3.92 out of 5
1 vote, 9.1%
1

2

3
2 votes, 18.2%
4
8 votes, 72.7%
5

Summary

This article explains step by step of accessing COM+ application using C#. The code is compiled using beta2. Microsoft (R) Visual C# Compiler Version 7.00.9254 [CLR version v1.0.2914]. It can be used with Beta1 with some minor modification.

If we want need to access the existing COM+ application with any .net supported language, we don't need to modify the single line of existing COM+ application, despite of the fact their execution model is completely different. Here is the step-by-step easy example of doing the same. We can access it in two ways, Early Binding and Late binding (remembered the old VB concepts). We will first look at Early binding example...

Early Binding

Tools Required

TlbImp.exe: (Type Library Importer) Imports (converts, generates wrapper DLL) the type definition found in COM component into equivalent .net definitions (or metadata), understandable by Common Language Runtime (CLR). The metadata generated, by TlbImp can be viewed by Ildasm.exe. If you are using the Visual Studio development environment, you only need to add a reference to the COM type library and the conversion is done automatically.

Let's Start

To use existing COM+ application we need create Runtime Callable Wrapper (RCW) using TlbImp.Exe, with VS.Net it is created automatically, when we reference the existing COM Component. The difference is that, VS.Net create the RCW with the same name as the original DLL, which may be confusing, and with TlbImp.Exe, we can specify the different name using /out: parameter.

Let us assume that we have a COM Component with a method Add, which takes two parameter A and B and returns the Sum.

Note: We have to register COM DLL first before using it...
'CompAdd.Dll 
(class1) 
Public Function Add(A As Long, B As Long) As Long

    Add = A + B

End Function

Now we will run TlbImp.Exe in our existing DLL i.e. CompAdd.Dll

This generated a wrapper dll CompAddRcw.dll. we can view this DLL using IlDasm.Exe

The discussion in IlDasm.Exe is beyond the scope of this article. Now we will simply write code to use the Wrapper DLL, which in turn will be calling the actual DLL. Now let us look into the C# code for doing it.

As we can see that we are getting the same kind of tooltip as we used to get with VB when we do early binding. Compile the program with /r: switch e.g.csc TestClient.cs /r:CompAddRcw.dll. Execute it and we just called COM component with .net.

Late Binding

For Late binding we have to use System.Reflection namespace, which allows us to programmatically access the types contained in any assembly. We will see how we can do late bindings in four easy steps..
  • We have Get IDispatch Interface using Type.GetTypeFromProgID("Project1.Class1")
  • We have to create instance using the type ID Activator.CreateInstance(objAddType)
  • We have to make array of arguments (if required)
  • Invoke the Method using objAddType.InvokeMember function.

 

The method Type.GetTypeFromProgID is used to load the type information of the COM object. The call to Activator.CreateInstance returns an instance of the COM object. And Finally InvokeMember function is used to call the Method of COM object.

Conclusion

This article gives very basic idea of using the old COM Application, for the purpose of simplicity and to focus on the purpose of the article no error handling has been done. In my next article we will see how can we use .NET component with VB.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Imtiaz Alam


Member

Location: United States United States

Other popular C# articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 18 of 18 (Total in Forum: 18) (Refresh)FirstPrevNext
Generalvalue cannot be null. Pinmemberjimkqui20:54 25 Sep '08  
GeneralRe: value cannot be null. Pinmemberjjjkkk0:47 26 Sep '08  
GeneralCOM Exception Pinmemberandrojdaz21:35 27 May '08  
GeneralRe: COM Exception PinmemberKipetcoff7:38 6 Aug '08  
GeneralRe: COM Exception Pinmemberjimkqui20:54 25 Sep '08  
GeneralWhat about calling COM+ on another server? PinmemberDan Vallejo7:38 10 Oct '07  
GeneralRe: What about calling COM+ on another server? Pinmemberjjjkkk13:40 26 Sep '08  
GeneralRe: What about calling COM+ on another server? Pinmemberejojart6:07 20 Mar '09  
GeneralThank you PinmemberHez1:50 26 Apr '06  
GeneralNeed help! Pinmemberlily0lin7:51 11 Oct '05  
GeneralRe: Need help! Pinmemberjimkqui20:56 25 Sep '08  
GeneralSimple and Concise Pinmembermcintyak18:36 7 Oct '05  
GeneralWhy was this dumb article written ? PinmemberAnonymous22:02 19 Feb '02  
GeneralFor people to learn I guess :-) PinmemberAnnie.586F988F-563B-41f5-8B46-0EB4ADB8B8EE1:54 2 Jul '02  
GeneralRe: Why was this dumb article written ? PinmemberJamie Nordmeyer10:45 16 Dec '02  
GeneralThis is a dumb article PinsussAkshay Zadgaonkar0:12 11 Jun '03  
GeneralRe: This is a dumb article Pinmembernormanzb23:20 19 Sep '07  
GeneralRe: Why was this dumb article written ? Pinmemberxavitomorera15:11 16 Jun '04  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 30 Oct 2001
Editor: Chris Maunder
Copyright 2001 by Imtiaz Alam
Everything else Copyright © CodeProject, 1999-2009
Web21 | Advertise on the Code Project