Click here to Skip to main content
15,878,748 members
Articles / Programming Languages / C#

Building COM Servers in .NET

Rate me:
Please Sign up or sign in to vote.
4.87/5 (95 votes)
2 Feb 2006CPOL98 min read 457.8K   3.9K   301  
Learn the fundamental principles of building COM DLL and EXE Servers using a .NET language.
// CPPClient01.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#import "SimpleCOMObject.tlb" raw_interfaces_only
using namespace SimpleCOMObjectLib;

// Generic CreateInstance() templated function to help in generic object creation.
template <class SmartPtrClass>
bool CreateInstance(LPCTSTR lpszProgID, SmartPtrClass& spSmartPtrReceiver, DWORD dwClsContext = CLSCTX_ALL)
{
  HRESULT			hrRetTemp = S_OK;
  _bstr_t			bstProgID(lpszProgID);
  CLSID				clsid;
  bool				bRet = false;
  
  hrRetTemp = CLSIDFromProgID
  (
    (LPCOLESTR)bstProgID,  //Pointer to the ProgID
    (LPCLSID)&clsid         //Pointer to the CLSID
  );

  if (hrRetTemp == S_OK)
  {
    if (SUCCEEDED(spSmartPtrReceiver.CreateInstance(clsid, NULL, dwClsContext)))
    {
	  bRet = true;
	}
	else
	{
	  bRet = false;
	}
  }

  return bRet;
}





// Generic CreateInstanceByClassFactory() templated function to help in 
// generic object creation. The class factory of the coclass is used to 
// create the instance.
template <class SmartPtrClass>
bool CreateInstanceByClassFactory
(
  LPCTSTR lpszProgID, 
  SmartPtrClass& spSmartPtrReceiver,
  IClassFactoryPtr& spIClassFactoryPtrReceiver,
  DWORD dwClsContext = CLSCTX_ALL
)
{
  HRESULT			hrRetTemp = S_OK;
  _bstr_t			bstProgID(lpszProgID);
  CLSID				clsid;
  bool				bRet = false;
  
  hrRetTemp = CLSIDFromProgID
  (
    (LPCOLESTR)bstProgID,  //Pointer to the ProgID
    (LPCLSID)&clsid         //Pointer to the CLSID
  );

  if (hrRetTemp == S_OK)
  {
    CoGetClassObject
    (
      (REFCLSID)clsid,  //CLSID associated with the class object
      (DWORD)dwClsContext, //Context for running executable code
      (COSERVERINFO*)NULL, //Pointer to machine on which the object is to be instantiated
      (REFIID)IID_IClassFactory,      //Reference to the identifier of the interface
      (LPVOID *)&spIClassFactoryPtrReceiver      //Address of output variable that receives the 
                    // interface pointer requested in riid
    );  
  }
  
  if (spIClassFactoryPtrReceiver)
  {
    hrRetTemp = spIClassFactoryPtrReceiver -> CreateInstance
    (
      NULL, 
      __uuidof(SmartPtrClass), 
      (LPVOID *)&spSmartPtrReceiver
    );
    
    if (SUCCEEDED(hrRetTemp))
    {
      bRet = true;
    }
    else
    {
      bRet = false;
    }
  }

  return bRet;
}





int _tmain(int argc, _TCHAR* argv[])
{
  ::CoInitialize(NULL);
  
  if (1)
  {
	// ISimpleCOMObjectPtr is a smart pointer class which will manage 
	// a pointer to the COM interface ISimpleCOMObject for us.
    ISimpleCOMObjectPtr	spISimpleCOMObject1 = NULL;
    ISimpleCOMObjectPtr	spISimpleCOMObject2 = NULL;
    IClassFactoryPtr	spIClassFactory = NULL;

	// We create an instance of the class factory of the coclass
	// whose CLSID is synonymous with the ProgID 
	// "ManagedCOMLocalServer_Impl01.SimpleCOMObject".
	// From this class factory object, we will also create an 
	// instance of the above-mentioned coclass and get hold of
	// its ISimpleCOMObject interface.
	CreateInstanceByClassFactory<ISimpleCOMObjectPtr>
    (
      "ManagedCOMLocalServer_Impl01.SimpleCOMObject", 
      spISimpleCOMObject1,
      spIClassFactory,
      CLSCTX_LOCAL_SERVER
    );
    
    if (spIClassFactory)
    {
      spIClassFactory -> LockServer(TRUE);
    }
    
	if (spISimpleCOMObject1)
	{
	  spISimpleCOMObject1 -> put_LongProperty(1002);
	  spISimpleCOMObject1 -> Method01(_bstr_t("C# EXE Local Server. The Long Property Value Is : "));
	  // Next Release() spISimpleCOMObject1.
	  spISimpleCOMObject1 = NULL;
	}    

	// We create an instance of an implementation of the ISimpleCOMObject interface
	// as provided by the COM class whose CLSID is synonymous
	// with the ProgID "ManagedCOMLocalServer_Impl01.SimpleCOMObject".
	CreateInstance<ISimpleCOMObjectPtr>
	(
	  "ManagedCOMLocalServer_Impl01.SimpleCOMObject", 
	  spISimpleCOMObject2, 
	  /*CLSCTX_INPROC_SERVER*/ CLSCTX_LOCAL_SERVER
	);
		
	if (spISimpleCOMObject2)
	{
	  spISimpleCOMObject2 -> put_LongProperty(1002);
	  spISimpleCOMObject2 -> Method01(_bstr_t("C# EXE Local Server. The Long Property Value Is : "));
	  spISimpleCOMObject2 = NULL;
	}
		
    if (spIClassFactory)
    {
      spIClassFactory -> LockServer(FALSE);
      spIClassFactory = NULL;
    }
  }

  ::CoUninitialize();
  
  return 0;
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Systems Engineer NEC
Singapore Singapore
Lim Bio Liong is a Specialist at a leading Software House in Singapore.

Bio has been in software development for over 10 years. He specialises in C/C++ programming and Windows software development.

Bio has also done device-driver development and enjoys low-level programming. Bio has recently picked up C# programming and has been researching in this area.

Comments and Discussions