vote up 0 vote down star

Note:

  • Using CoGetClassObject, to create multiple objects through a class object for which there is a CLSID in the system registry

  • Single threaded apartment

For instance:

hresult = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);

IClassFactory *pIClassFactory;

hresult = CoGetClassObject (clsid, CLSCTX_LOCAL_SERVER, NULL, IID_IClassFactory, (LPVOID *)&pIClassFactory);


hresult = pIClassFactory->QueryInterface (IID_IUnknown, (LPVOID *)&pUnk);


hresult = pUnk->QueryInterface (__uuidof(IExample), (LPVOID *)&pISimClass);

Note:

  • E_NOINTERFACE is returned
    • *ppvObject is set to NULL

Question:

  • How can I confirm, that it is indeed registered - if this is the problem?
flag

Please vote to close the post - as is no longer relevant. Thanks – Aaron Mar 1 at 15:26

2 Answers

vote up 3 vote down check

The problem here is that you are confusing the class object and the object itself. CoGetClassObject will give you a pointer to an object that implements IClassFactory and intended to create an instance of the object you are interested in. It is not an actual instance of that object.

In your example, you are getting an IUnknown pointer by calling QueryInterface on the IClassFactory pointer. This pointer still points to the instance of the class object, hence doing QueryInterface for the interface you are interested in results in an error. Instead you need to call IClassFactory::Createinstance to get the IUnknown pointer to the actual object and do the QueryInterface on that pointer.

link|flag
Thanks - but now: "This connectable object does not support the outgoing interface specified" – Aaron Mar 1 at 0:50
If you post sample code what you are trying to do, we might be able to help. – Franci Penov Mar 1 at 3:17
vote up 0 vote down

Also, take a look at CoCreateInstance function.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.