Knowledge Base

Objects in .EXE Cannot be Aggregated

Article ID: 114598

Article Last Modified on 3/3/2005


APPLIES TO


This article was previously published under Q114598
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 query words: 2.01 3.50 4.00

Keywords: kbprogramming KB114598