4

Python の新しいスレッドで dll から COM オブジェクトを作成しようとしています。そのスレッドでメッセージ ポンプを実行できます。

from comtypes.client import CreateObject
import threading

class MessageThread(threading.Thread):

    def __init__(self):
        threading.Thread.__init__(self)
        self.daemon = True

    def run(self):
        print "Thread starting"
        connection = CreateObject("IDMessaging.IDMMFileConnection")
        print "connection created"

a = CreateObject("IDMessaging.IDMMFileConnection")
print "aConnection created"
t = MessageThread()
t.start()

これは私が得るエラートレースです:

aConnection created
Thread starting
>>> Exception in thread Thread-1:
Traceback (most recent call last):
  File "c:\python26\lib\threading.py", line 532, in __bootstrap_inner
    self.run()
  File "fred.py", line 99, in run
    self.connection = CreateObject("IDMessaging.IDMMFileConnection")
  File "c:\python26\lib\site-packages\comtypes\client\__init__.py", line 235, in CreateObject
    obj = comtypes.CoCreateInstance(clsid, clsctx=clsctx, interface=interface)
  File "c:\python26\lib\site-packages\comtypes\__init__.py", line 1145, in CoCreateInstance
    _ole32.CoCreateInstance(byref(clsid), punkouter, clsctx, byref(iid), byref(p))
  File "_ctypes/callproc.c", line 925, in GetResult
WindowsError: [Error -2147221008] CoInitialize has not been called

何か案は?

4

3 に答える 3

7

そのスレッドで COM オブジェクトを作成する前に、そのスレッドで呼び出しCoInitialize()(または) を行う必要があります。CoInitializeEx()

from win32com.client.pythoncom import CoInitialize
CoInitialize()
于 2010-07-14T13:27:41.393 に答える
2

私が覚えている限り (ずっと前に COM コンポーネントを使って多くのプログラミングを行っていました) 、COM オブジェクトが STA を使用する場合、各スレッドで CoInitialize を呼び出す必要があります。

http://msdn.microsoft.com/en-us/library/ms678543(VS.85).aspx

しかし、Pythonでその関数を呼び出す方法がわかりません。

ここにMSDNドキュメントがあります

http://msdn.microsoft.com/en-us/library/ms678543(VS.85).aspx

于 2010-07-14T13:28:16.810 に答える