Re: [Python.NET] Calling C# from Python 2.3

2005-01-04 Thread J. Merrill
The docn says that any .NET class to be used from COM must have a public no-parameters constructor.  I don't see one in any of the classes you defined. Nesting classes the way you have is not, I don't think, going to be compatible with being called from COM.  The class you seem to be asking COM t

RE: [Python.NET] Calling C# from Python 2.3

2005-01-03 Thread Brian Lloyd
ion   http://www.zope.com -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Amod KulkarniSent: Monday, January 03, 2005 2:38 AMTo: [email protected]: [Python.NET] Calling C# from Python 2.3 Hi,   I know PythonNet has been

[Python.NET] Calling C# from Python 2.3

2005-01-03 Thread Amod Kulkarni
Hi,   I know PythonNet has been specially designed to handle .NET/CLR compatibility but because of some other restrictions I want to use Python 2.3 to access a C# function. First of all is it possible? I am trying with following piece of code in C# (Server app) and python (client app).