Russell Warren wrote:
>
> Also - what is the purpose in defaulting to use both InprocServer32
> and LocalServer32?  Based on my problem, the default windows choice
> appears to be InprocServer32.  When/why would it move on to the
> LocalServer32 entry?  It clearly does not do it on error.

An application can request the type of server it wants (in-process or
out-of-process).  It's the third parameter to CoCreateInstance. 
Virtually every application in the world wants in-process, because you
can communicate via function calls instead via cross-process remote
procedure calls where you have to marshal the parameters across process
boundaries.

-- 
Tim Roberts, t...@probo.com
Providenza & Boekelheide, Inc.

_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to