python com component does not register when using libxml2 on win7
i've built a com component which utilizes libxml2 python bindings , the build is successfull but when i try to register the component i get "specified module could not be found , unable to load python dll" this is the error i get when the component is built using the bundle files option set as 1 if i build the component with bundle files set as 3 ,then i get a different error s开发者_开发问答aying that the component was loaded but the call to DllRegisterServer Failed with error code 80040201
if the libxml2 import is removed all works fine.
any help wold be simply great.
thanks
Most likely, regsvr32.exe
which registers you COM component couldn't find a DLL that your COM component needs.
I'm not familiar with Python COM components but is there some way you can run depends.exe
on it? This is the usual way to track down binary dependency problems.
精彩评论