Re: [python-win32] errors running C++ client against python COM server

2005-10-17 Thread Impert, Nicky P
Mark, thanks for getting back to me. Note, I have since also tried getting a python COM server using package ctypes to connect to a C++ COM client using event handlers and found I could do it with a dispatch interface (dispinterface in idl), but not a custom interface (inherited from IUnknown). C

Re: [python-win32] errors running C++ client against python COM server

2005-10-12 Thread Mark Hammond
> '' was created, but > does not support the interface > 'IConnectableServer'({F51A6858-F43E-4CF9-B603-6D15D3E8DB71}): No such > interface supported", None, None) So the problem is our gateway doesn't think we support that interface. > # putting typelib guid up here as top-level reg_clsid because

[python-win32] errors running C++ client against python COM server

2005-10-05 Thread Impert, Nicky P
Greetings. I need a working example of implementing an event handler in a C++ client with a python server. I broke apart the python connect example into a client and server. (i.e. I split C:\Python24\Lib\site-packages\win32com\demos\connect.py into client.py and server.py in some other directory