vote up 0 vote down star

First, I'd like to note that I need to use the COM/OLE2 APIs, the low level stuff, the stuff you can put in a C Windows Console program. I can't use MFC. I can't use .NET.

My question is:

Given the following code:

CLSID clsid;    
HRESULT hr;

hr = CLSIDFromProgID(L"InternetExplorer.Application", &clsid);
assert(SUCCEEDED(hr));

hr = CoCreateInstance(clsid,
                      NULL,
                      CLSCTX_LOCAL_SERVER,
                      IID_IDispatch,
                      (void **)&(iePtr_));
assert(SUCCEEDED(hr));

Is there a way to write some information to the disk so that I can reconnect to the same instance of IE later on? Basically can "iePtr_" be stringified for later reconstitution by some other process?

Thanks.

---- added later------

The broader problem I am trying to solve is that I want to start an AutoCAD application, load some data into it, and then leave it running for my client to interact with. Later he will go back to my application and I want to reconnect to the same AutoCAD session and feed it more data.

Now, I full well realize I can keep the IDispatch pointer in memory in my application and I'll be able to continue to interact with the same AutoCAD process. That's my fallback position.

However, I use a "wrapper" program to do my COM stuff. So the wrapper is transient. My main application starts the wrapper, then the wrapper communicates, and then exits. I just want subsequent wrapper processes to be able to reconnect to the same AutoCAD process.

Why use a wrapper? Here's the working reason: My main application is a 32-bit application, but I can use a 64-bit wrapper and communicate with 64-bit AutoCAD. I need to be able to communicate with 64-bit AutoCAD and can probably not port my main application easily (500K+ lines of C++) vs. my wrapper program (couple hundred lines).

flag
What's the broader problem you're trying to solve? – Reuben Sep 3 at 6:41
You should use SUCCEEDED() instead of !FAILED() - that's what it is intended for. I'll edit the code. – sharptooth Sep 3 at 14:02
Added "broader" picture stuff to the main post. – Craig W. Wright Sep 3 at 17:58
That sounds strange. The Autocad COM server is started as an out-proc (exe), isn't it. If so you don't care if it's 32- or 64-bit. – sharptooth Sep 4 at 5:42

3 Answers

vote up 0 vote down

If the application registered itself in the Running Object Table, you can use the GetActiveObject function to get a reference to the application object.

IUnknown *pUnknown;

hr = GetActiveObject(clsid, NULL, &pUnknown);
assert(SUCCEEDED(hr));

hr = pUnknown->QueryInterface(IID_IDispatch, (void **)&(iePtr_));
assert(SUCCEEDED(hr));
link|flag
vote up 0 vote down

CoMarshalInterface (and related APIs) can be used to marshal an interface into another thread, process or different PC on the network. I don't know how long you are allowed to wait before completing the marshaling process, but in principal, if the object you are marshaling an interface to has not been closed the marshaling process can be completed later.

Being able to destroy an OLE object and later restore "the same object" is tied into what are called Monikers, and if you (can) understand those then your OLE/COM Juju is powerful indeed.

link|flag
Allegedly, DCOM has a "garbage collection" mechanism that kills the stub for an object after 4 minutes, so that's a timeout to be aware of. Provided the object is hosted in its own process, you should be able to marshal the interface ptr to a stream, write that to disk, and then reconstitute in another process, if only you do it within those 4 minutes. – Kim Gräsman Sep 3 at 8:03
vote up 0 vote down

Nope, that's impossible. The whole idea of COM is that the COM server is started transparently and only preserves state until you have stopped using its objects. After you've released the COM objects the COM subsystem is free to completely stop the server and there's no way to recreate the same process. The only way a similar result would be possible is to have a COM object with serialization methods that would permit saving the state into a stream and restoring it from a stream. But even then you would have to CoCreateInstance() again, obtain a new COM object interface pointer and call the restore method of that object.

The pointer you get from CoCreateInstance is only valid for the current process, if you save it on disk and restore later it will become invalid.

link|flag

Your Answer

Get an OpenID
or

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