> If I create different COM objects from a python client, a new python.exe 
> process is started for each COM created...
> Is it possible to create an object factory that manages a pool of objects 
> of the same type within the same python process? (The objects needs to 
> share a memory area).

Do what you would in C++ I'd guess.

Create a COM object that is the factory and have methods on it
to return the other objects. Now all objects are in the same address
space. Use a moniker to the factor to make it a singleton if that is
what you need.

                Barry

_______________________________________________
ActivePython mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/activepython

Reply via email to