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
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
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
> 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
> 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.
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
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
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
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