Re: [python-win32] Writing .NET component in Python

2007-09-06 Thread Sidnei da Silva
Here's the information that I've found: http://msdn2.microsoft.com/en-us/library/ms973800.aspx So basically you use tlbimp to create a 'Runtime Callable Wrapper' which is a trusted .NET assembly that can call your COM object. -- Sidnei da Silva Enfold Systems, Inc. __

Re: [python-win32] Writing .NET component in Python

2007-09-06 Thread Thomas Heller
Sidnei da Silva schrieb: > [ Thomas Heller ] >> Not sure what you mean by .NET port. I have the impression (from reading, >> never >> used .NET myself) that .NET is able to use COM objects. It may be >> required that >> the COM objects must have a type library. > > That's my understanding too.

Re: [python-win32] Writing .NET component in Python

2007-09-06 Thread Larry Bates
Sidnei da Silva wrote: > [ Thomas Heller ] >> Not sure what you mean by .NET port. I have the impression (from reading, >> never >> used .NET myself) that .NET is able to use COM objects. It may be >> required that >> the COM objects must have a type library. > > That's my understanding too. I

Re: [python-win32] Writing .NET component in Python

2007-09-06 Thread Sidnei da Silva
[ Thomas Heller ] > Not sure what you mean by .NET port. I have the impression (from reading, > never > used .NET myself) that .NET is able to use COM objects. It may be > required that > the COM objects must have a type library. That's my understanding too. If you search for articles on .NET

Re: [python-win32] Writing .NET component in Python

2007-09-06 Thread Michel Claveau
Hi! > I have the impression (from reading, never used .NET myself) that .NET is > able to use COM objects. I confirm. dotNET can use COM objects. But. COM servers in Python has no TLB (Types-LiBrary). For use these components from C#, we MUST use a tech named "late binding". I have (but wher

Re: [python-win32] Writing .NET component in Python

2007-09-06 Thread Thomas Heller
Larry Bates schrieb: > Does anyone have any insight where I would start looking for information on > writing .NET compatible components in Python. I have a COM object that is > written in Python and some developers have asked for a .NET port of it. I > spent > some time in Google and didn't c

Re: [python-win32] Writing .NET component in Python

2007-09-06 Thread Graeme Glass
On 9/6/07, Larry Bates <[EMAIL PROTECTED]> wrote: > Does anyone have any insight where I would start looking for information on > writing .NET compatible components in Python. I have a COM object that is > written in Python and some developers have asked for a .NET port of it. I > spent > some t

[python-win32] Writing .NET component in Python

2007-09-06 Thread Larry Bates
Does anyone have any insight where I would start looking for information on writing .NET compatible components in Python. I have a COM object that is written in Python and some developers have asked for a .NET port of it. I spent some time in Google and didn't come up with any information to