Objects in .EXE Cannot be Aggregated

ID: Q114598

The information in this article applies to:

Attempting to create an aggregate object with a Non-Control object implemented in another .EXE is not possible. Passing a value for the punkOuter parameter of IClassFactory::CreateInstance() in this situation results in the error value CLASS_E_NOAGGREGATION.

The proxy for IClassFactory returns this error value immediately, without calling the CreateInstance() method in the object. According to the rules of aggregation, the Non-Control Object must not reference count the pointer to the controlling IUnknown. If the parts of the aggregate object reside in separate process spaces, the proxy for the controlling IUnknown will be freed prematurely due to the lack of this reference count. Without the interface proxy, the pointer to the controlling IUnknown stored by the Non- Control Object is no longer valid, causing problems when delegating calls to the outer IUnknown.

For more information on the process of Aggregation, please refer to the "OLE 2 Programmer's Reference", "Working with Windows's Objects".

Additional reference words: 2.01 3.50 4.00 KBCategory: kbole kbprg KBSubcategory: LeTwoOh

Last Reviewed: May 17, 1995