Tagged Questions
3
votes
2answers
198 views
Does marshaling a marshaled interface give me a marshaller to the proxy or the original interface?
Here is a concrete example:
I create a IWeBrowser2 interface by calling wb.CoCreateInstance(CLSID_InternetExplorer, 0, CLSCTX_SERVER);. This gives me a marshaled interface from my process into ...
1
vote
2answers
63 views
Is there a way to decrease overhead associated with out-proc COM calls?
Our program consumes an out-proc COM server and makes thousands of calls on its interfaces. This takes very very long time - like a minute for about 50k calls. The COM component vendor says that the ...