How can would you create an instance of the object in COM
Answers were Sorted based on User's Feedback
Answer / chandrasekharreddy siddamreddy
To create the instance of COM componet use the following
WIN32 APIs
To access the component that was there in local system use
following API
CoCreateInstance(clsid,NULL(used for
aggregation),CLSCTX_ALL,Interface_GUID,(void**)
&pRequestedInterface );
To access the COM componet remotely use the following API
CoCreateInstanceEx
(CLSID,NULL,CLSCTX_ALL,COSERVERINFO,Interface_GUID,MULTI_QI*
);
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / balaji
We can use CreateInstance And CoCreateInstance to create an
instance of the object in COM.
HRESULT CreateInstance(void* pfnCreateInstance,REFIID riid,
void** ppvObj );
Parameters
pfnCreateInstance
[in] A pointer to a creator function.
riid
[in] The IID of the requested interface.
ppvObj
[out] A pointer to the interface pointer identified by
riid. If the object does not support this interface, ppvObj
is set to NULL.
Return Value
| Is This Answer Correct ? | 2 Yes | 1 No |
Differentiate normal DLL to COM DLL
Explain JIT activation?
Which tool is used to configure the port range and protocols for DCOM communications?
where can i use pmcmd commands of informatica
How do you make a NET component talk to a COM component?
What is the difference, if any, between OLE and COM?
Explain Futures of COM?
How to Use structs in COM interfaces when Automation compatibility is not an issue?
Explain object pooling?
When you call CoInitialize(NULL) function how it works internally.
what is mean by scintific,commercial and business applications? How they differ? Please answer me. Advance thanks.
How to create an instance of the object in COM?