Re: Re: COM server implementing given Interface by Volker Siepmann

2002-01-28 Thread Trent Mick
On Tue, Jan 22, 2002 at 08:54:11AM -0500, Curtin, Craig wrote: > hi, > i'm wondering if Volker ever got this issue solved? i need to > do something similar. i'm trying to create a python COM server to > implement the AsyncEvents interface for exchange. i found a vb > sample in the exchange

Re: Re: COM server implementing given Interface by Volker Siepmann

2002-01-23 Thread Matthew
I'd also like to do this.   I'd like to implement IServiceProvider, IHTMLEditHost to automate Internet Explorer in edit mode.   I'm just about to put up a recipe as far as I've got.   GBU Matthew Sherborne

Re: Re: COM server implementing given Interface by Volker Siepmann

2002-01-22 Thread Curtin, Craig
i think seeing how Volker implemented his solution may help get me on my way. thanks, craig ========== Re: COM server implementing given Interface by Volker Siepmann ... I don't want to extend an interface (so far I got it - I'm quite into CORBA), but just impl

Re: COM server implementing given Interface

2001-10-19 Thread Volker Siepmann
> But for your task you should! For example it is absolutely not allowed to > expose or change an existing interface. And the IDispatch-Interface is > based on COM-technologie but part of the OLE2-technology. > > Maybe the books are a good point to start. > Inside COM,  ISBN 1-572-31349-8 > Ins

RE: COM server implementing given Interface

2001-10-18 Thread Mark Hammond
> I thought what he wanted to know is if > he could write a non-IDispatch (e.g., v-table) > based server in Python. > I don't the the answer to that - does anyone? It can be done - see win32com\servers\test_pycomtest.py It is still not possible to *call* such interfaces - only to implement them.

RE: COM server implementing given Interface

2001-10-18 Thread Michael Robin
2001 3:42 AM To: [EMAIL PROTECTED] Subject: Re: COM server implementing given Interface Volker Siepmann wrote: > I'm unfortunately not a COM expert at all, so please keep it simple! ;-) But for your task you should! For example it is absolutely not allowed to expose or change an exist

Re: COM server implementing given Interface

2001-10-18 Thread Markus Daniel
Sorry, I wrote "expose" but I meant "extend". And to use the bandwidth useful, I will make a workaround for Kári Harðarson public. He got problems to profile the IIS via import profile profile.run() One easy solution for IIS, WSH or IE is this: # --- IIS-Code def test(): do_anything_u

Re: COM server implementing given Interface

2001-10-18 Thread Markus Daniel
Volker Siepmann wrote: > I'm unfortunately not a COM expert at all, so please keep it simple! ;-) But for your task you should! For example it is absolutely not allowed to expose or change an existing interface. And the IDispatch-Interface is based on COM-technologie but part of the OLE2-techn

COM server implementing given Interface

2001-10-17 Thread Volker Siepmann
Dear list, I'm a quite desperately trying to implement a COM server in python using ActiveState ActivePython 2.1. in Windows NT. In M.Hammond, "Python Programming on Win32", O'Reilly, Jan. 2000, only the following way is described: 1) Write python code 2) Export it as a COM-object (e.g. by